I have subclassed NSPersistentDocument. I have renamed the window too. But when I run the application I get the title of the application window as "Untitled". There is no -setTitle: method which I can use to change the title. Any ideas how can I go about doing this?
|
feedback
|
|
Did you set the title by sending If so, that's wrong. Set the | |||
|
feedback
|
|
You can bind the Window's title to the document and use Key-Value-Observation to update it. With Interface Builder select the 'Window' of MyDocument.xib and move over to 'Bindings' tab in the inspector. Check the 'Title' to bind to 'File's Owner' and the 'Model Key Path' to be 'title'. Then in your subclass of NSPersistentDocument add this code
Now if you want to change to the title of the window you can use KVO. For example
| ||||
|
feedback
|