i know i can set the a window's title in interface builder, but i would still like to know how to do things manually, like setting a window's title. the following code doesn't work:
this code is overriding IB's set title, so i know it's in the right place, but the override is just displaying a blank title bar...
Code:
- (void)setTitle:(NSString *)title
{
title = @"Window's New Title";
}
this code is overriding IB's set title, so i know it's in the right place, but the override is just displaying a blank title bar...