2012-09-05 108 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]; 
}