I set up an empty app with only an app delegate class, then subclassed a view controller class to create a xib to layout the app and make connections.
But when I tried
You need to set 2 things for that..
in AppDelegate.m file: _applicationDidFinishLaunchingWithOptions_
_applicationDidFinishLaunchingWithOptions_
self.window.rootViewController = self.viewController;
in application.m
retVal = UIApplicationMain(argc, argv, nil, @"AppDelegate");