I have a question regarding setting up a simple single view application. From what I can see there are two methods...
METHOD_001
- Start Xcode and create a "Window Based Application"
- Start setting up your interface in the MainWindow.xib
METHOD_002
- Start Xcode and create a "Window Based Application"
- In Xcode add a UIViewController subclass with its own XIB.
- In Xcode add an IBOutlet to the delegate to point to UIViewController
- In Interface Builder add an instance of UIViewController and link it at the delegate
- In Interface Builder select the "NIB Name" the UIViewController will use.
To my mind METHOD_002 would seem to be the way to go for anything other than the most simple of tests. Also its following the MVC methodology, so I would suggest that METHOD_001 is just a starting point and you should always be heading towards METHOD_002?
gary