On the iPhone I use UIViewController\'s viewDidLoad to run code to set up the view.
UIViewController
viewDidLoad
How can I do that with NSViewController?
NSViewController
why don't you try this:
- (void)awakeFromNib { //setup code NSLog(@"hello there"); }