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'm adding a help overlay view to my application, similar to Fandango's help view, and am getting an odd message in the console. The app doesn't crash but I think that my presenting a modal view when the my other view hasn't finished completely could be causing the problem.

The message I get in the console is: Unbalanced calls to begin/end appearance transitions for .

Here is what I'm doing in my application:didFinishLaunchingWithOptions:

- (BOOL) application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
    [[NSUserDefaults standardUserDefaults] registerDefaults:
        [NSDictionary dictionaryWithContentsOfFile:
            [[NSBundle mainBundle] pathForResource:@"Defaults" ofType:@"plist"]]];

    self.window = [[[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]] autorelease];
    self.viewController = [[[ViewController alloc] initWithNibName:@"ViewController" bundle:nil] autorelease];
    self.window.rootViewController = self.viewController;
    [self.window makeKeyAndVisible];

    if ([[NSUserDefaults standardUserDefaults] boolForKey:@"showHelpOverlay"]) {
        [self.viewController presentHelpOverlayViewController];
    }
}

Perhaps I should be calling my method in my main view controller in viewDidLoad or something?

Any ideas any one?

share|improve this question
Yes, call it in viewDidLoad. – random Jul 27 '12 at 21:56
is your modal presentation animated? – calvinBhai Jul 27 '12 at 21:57

1 Answer

up vote 0 down vote accepted

Yes. thats right.

you could either do that, or

use nstimer to call presentHelpOverlayViewController with some delay

share|improve this answer
When I move that code into viewDidLoad, the overlay view does not appear. If I place the code, presenting the overlay, in viewDidAppear the overlay will show. The overlay does not show if present code placed in viewWillAppear. – developerdoug Jul 28 '12 at 0:21
it makes no sense for the OS to show another present a modal view, before its parentview has been shown. How does it behave if you set animated:NO/YES ? – calvinBhai Jul 28 '12 at 19:41

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.