When I create a new application with one view in Xcode 4.6 using the storyboard, we see that the main function creates a new application using the application delegate, for example:
return UIApplicationMain(argc, argv, nil, NSStringFromClass([MyAppDelegate class]));
However, if we look at MyAppDelegate.h and MyAppDelegate.m, there is no link anywhere in the code to MainStoryboard.storyboard. This is different from the non-storyboard version, where we can find a line of code that loads the pen file programmatically.
So my question is, how does the storyboard load? (where do I poke to find it?)
ios objective-c xcode
agro1986 May 22 '13 at 22:26 2013-05-22 22:26
source share