Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I load a splitViewController on my iPad app. But loading it with an empty data array.

Then I load a login view and when authenticated successfully I refresh the root and detail view. And because you are authenticated, it is loaded with data.

But while I load the Login view modally I get this error:

Unbalanced calls to begin/end appearance transitions for <UISplitViewController: 0x133630>

code:

- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
...

//init
    self.window.rootViewController = self.splitViewController;

    //login
    LoginViewController *loginView = [LoginViewController new];
    [loginView setDelegate:self];
    loginView.modalTransitionStyle = UIModalTransitionStyleCoverVertical; //this is still pushing the view horizontally in landscape?
    [self.splitViewController presentModalViewController:loginView animated:YES];
...

    [self.window makeKeyAndVisible];

    return YES;
}

When I comment-out the login load and push, I don't get the error.

But the weirdest thing is that it worked before, but after optimizations of the code this error occurred.

share|improve this question

1 Answer

I know this is old, but you need to

[self.window makeKeyAndVisible];

before presenting the modal view controller

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.