2012-09-05 74 views
1

我试图在系统运行时更改文档窗口的代理图标更改图标

[[[自我窗口] standardWindowButton:NSWindowDocumentIconButton] setImage:IMG]。

这是得到执行,但在info.plist中的设置重写此。

什么是正确的地方称此。

回答

1

在你NSWindow子类中重写setRepresentedURL如下:

- (void)setRepresentedURL:(NSURL *)url 
{ 
    [super setRepresentedURL:url]; 
    NSImage* img = ... 
    [[self standardWindowButton:NSWindowDocumentIconButton] setImage:img]; 
}