1

I'm using CABasicAnimation and CATransaction to animate some layers in my custom UIView.

However, when after that returning to the rest of my app using a navigation controller's back button, the navigation controller does not animate anymore. Not even when then going to any other view.

I am using an iPad with iOS5.

guruz
  • 1,604
  • 14
  • 21

1 Answers1

1

I was able to workaround this by calling

[UIView setAnimationsEnabled:YES];

in my viewDidDissapear and viewWillDisappear methods.

Really strange since I am never disabling view animations anywhere in my code.

guruz
  • 1,604
  • 14
  • 21