I would like to add a login modal view in my master-detail project as segue. Some say this should work:
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
bool isLogged = YES;
if (isLogged) {
UINavigationController *navigationController = (UINavigationController*) self.window.rootViewController;
UISplitViewController *yourStartingViewController = [[navigationController viewControllers] objectAtIndex:0];
[yourStartingViewController performSegueWithIdentifier:@"login" sender:self];
}
but this results in exception, has no segue with login.