1. You should start with a window based application. I never start with anything else as they are usually IB rich and cumbersome.
2. Make sure you have created the classes and imported their header files into the app delegate's implementation file (.h's imported into appDelegate.m)
3. Make sure there are declarations in your appDelegate.h file of:
@class MyTableViewController;
@class MySecondTableViewController;
Place them before the @Interface bit.
|