I’ve just started with iOS 5 and got surprised from the beginning. Now the first thing I noticed is if I start with Single View Application there’s nothing in the application:DidFinishLaunchingWithOptions: method about setting the rootviewcontroller. It just returns YES. I know, if I take a look at the storyboard I’ll see an arrow pointing to the
ViewCotroller object. But how does it work if it’s not coded in the .m file? Maybe it adds the code in runtime as ARC does by sending release messages dynamically?
I’ve just started with iOS 5 and got surprised from the beginning. Now the
Share
The viewController that is pointed to by the “arrow” on the left that isn’t attached to anything else is what gets set as the rootViewController when using storyboards.