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 have this problem when I simulate my app, its not an error or a warning but it appears in my console, has anyone ever experienced this before?

share|improve this question
do you make some kind of animation in that view controller ? – user756245 Jul 24 '11 at 21:16
Yes. I have a opening animation that slides to images apart, I have now noticed this error only happens when I am loading code onto the phone. – C.Johns Jul 24 '11 at 21:58
the error message suggests you begin a transition but there is a missing call to the corresponding end method. – user756245 Jul 24 '11 at 22:04
1  
Got the same thing. Any solution for this? – seeafish Aug 27 '11 at 6:39
Also looking for a resolution to this – barfoon Nov 9 '11 at 19:49
show 5 more comments

13 Answers

up vote 21 down vote accepted

In my case, this error occurs when you click two tabs in a tableview very fast.

The result causes wrong titlename, back button disappear. Someone mentioned that when you push a view, set animated:NO. The error will disappear but still causes some strange behavior. It pushes two views, then you need to back twice to get back the tableview screen.

Method I tried in order to resolve this problem:

add BOOL cellSelected;

in viewWillAppear cellSelected = YES;

in didselectcell delegate if (cellSelected){ do action ; cellSelected = NO;}

This helps prevent clicking two different cells very fast.

share|improve this answer
4  
i have no idea why someone downvote me without any reason – chings228 Apr 11 '12 at 9:41
1  
My guess is some of the wording was hard to understand. I made a few edits to increase the readability. – Kyle Aug 16 '12 at 19:16

I have this problem too. I found two solutions to this problem:

  1. You can see this solution above.
  2. I found subclass from UINavigationController where this problem resolved. Buffered Navigation Controller
share|improve this answer

I had lot of problem with the same issue. I solved this by this way

1) You're not using UIViewController's designated initializer initWithNibName:bundle:. Try using it instead of just init.

2) set animated:YES to a NO, and that solved the problem. eg. [self.navigationController pushViewController: viewController_Obj animated:NO];

share|improve this answer
This solved my problem,thanks :-) – PeterK Feb 23 at 18:51

I had the same issue using navigation controller and push other controllers to it. I tried to use Buffered Navigation Controller and several other approaches, but it didn't work for me. After spending some time for figuring it out I noticed that this issue occurs if you trying to push new view controller while previous transaction (animation) in progress (about 0.5 sec duration I guess). Anyway, I made quick solution with delegating navigation controller and waiting for previous animation finishes.

share|improve this answer

In my case it happened when I triggered [self performSegueWithIdentifier:@"SomeIdentifier" sender:self]; within an UINavigationController items' viewDidLoad method.

Moving it into the viewDidAppear method solved the problem.

The reason very likely is that in viewDidLoad not all of the fancy animations have already been finished, whereas in viewDidAppear everything's done.

share|improve this answer

I also got this at

[self dismissModalViewControllerAnimated:YES];

I changed the YES to a NO, and that solved the problem.

share|improve this answer

For what it's worth, I got this same error when not including a call to [super viewDidLoad:animated] in my viewDidLoad override.

share|improve this answer

I had this problem when I forget to set Break; after pushing the view in a switch statement!

Like here:

case 1:{

        SomeViewController *someViewController = [[SomeViewController alloc]initWithNibName:@"SomeViewController" bundle:Nil];
        [self.navigationController pushViewController:someViewController animated:YES];
        [someViewController release];
    }

        break; //Forgetting to set break here:
share|improve this answer

The situation can occur if you are adding a view with a modal view controller as a sub view. Best to use:

-(void) viewDidAppear:(BOOL)animated {
    [self presentViewController:self.yourModalVC animated:YES completion:nil];
}

It is basically saying the view life cycle is not streamlined for those viewControllers you are trying to display then.

share|improve this answer

I have the similar problem when trying to do:

[self.navigationController popToViewController:[self.navigationController.viewControllers objectAtIndex:2] animated:YES];

in a function like - (void) popUpToLevelTwo; , and to put a return; at the end of function solves the problem

share|improve this answer

i have same problem when i used navigationcontroller's pop method In my app i use a separate logic for navigation controller,So avoided the use of navigation bar and it is always hidden. Then i use a custom view and notification for handling the backbutton and it's events. notification observers are registered and and not removed. So the notification fires twice, and it creates the above mentioned error. Check your code throughly for getting such fault's

share|improve this answer

the reason behind the error " Unbalanced calls to begin/end appearance transitions" is when you navigate | segue twice at the same time

share|improve this answer

I also had this problem when I tapped a button from a NIB. It turns out I had accidentally wired the button to send an event to two IBAction methods, each of which did a pushViewController:animated:

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.