I’m new to Objective C and Cocoa – and I’m having a really hard time changing the title on one of my windows. Usually I would press the outside of the window, and then in Window Attributes Inspector there’s the title area – however for this particular project it has a name in that box and when I run the application, the title bar still says untitled. Am I missing something? I haven’t binded the title to a data source or anything.
Share
If you want to do it programmatically it’s really easy:
[window setTitle:@"Window Title"];