It seems to me that my iPad application loads the Storyboard File along with it's ViewController on it's own. I see an entry in the plist file for "Main storyboard file base name".
Coming from a background where I used to create "Empty Application" in Xcode, and I would then create UIViewController along with nib file, instantiate inside
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
and add to the view, and I've reference (variable) to this ViewController object
Now in this "Single View Application", I don't see any reference to the Storyboard based ViewController and I need to have a reference to do some work. please advise.