I get the following error in my console:
Applications are expected to have a root view controller at the end of application launch
Received the same error after replacing my UI with a Storyboard, using XCode 4.6.3 and iOS 6.1
Solved it by clearing out all of the code from didFinishLaucnhingWithOptions in the AppDelegate
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
return YES;
}