i create one Main-iPad.Storyboard with Split View Controller Windows and App Delegate
here are my app Delegate.h
IBOutlet UISplitViewController * rootcontroler;
UIWindow *window;
here are my app Delegate.m
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
UIStoryboard * storyboard = [UIStoryboard storyboardWithName:@"Main-iPad" bundle:nil];
UIViewController *initviewcontroller = [storyboard instantiateInitialViewController];
[self.window setRootViewController:initviewcontroller];
}
and i added in Target-> General -> Main InterFace = Main-iPad
but when i run the app i received the black screen