Now I drag a file to the app icon in the dock, this app is based on document . I found that no little image on the left of window title after the app is run and the mainwindow is open . but when I drag a file to the dock icon before the app run and use this method to run the app , a little image on the left of window title to show the file ,just like the xcode ect. Now I want to show the little image both way or not to show the little image both way , How to do ? I think that it maybe the window property based on document , but I don't know how to fix it ? Thanks!
A:
If you just use -setTitle:
, no icon. If you use -setTitleWithRepresentedFilename:
you get the icon.
Graham Lee
2009-03-05 06:56:15
A:
I used the [mainWindow setTitle:tmp];,but icon still appear.when I used setTitleWithRepresentedFilename: I found that both icon and window title name both are modify,in the document class I overload the -(void)displayName;so I want to the window title is fixed anytime.
jin
2009-03-05 07:31:33
A:
Ok , I find the result: 1.[[window standardWindowButton:NSWindowDocumentIconButton] setImage:image] 2.- (BOOL)window:(NSWindow *)sender shouldPopUpDocumentPathMenu:(NSMenu *)titleMenu { return NO; }
jin
2009-03-09 02:57:53