I have an animated transition to a UIViewController that controls a OpenGL-ES UIView. After the animation, the OpenGL view does not refresh/update per frame. The drawView: method is being called every frame but the display does not refresh/update to the new frame - I get the first drawn frame but nothing subsequent. If I disable the animated transition, everything is fine. Here's the CATransition in the overridden UINavigationController ...
- (void)pushViewController:(UIViewController *)viewController animated:(BOOL)animated
{
if (animated) {
CATransition *transition = [CATransition animation];
transition.duration = TRANSITION_DURATION;
transition.timingFunction = [CAMediaTimingFunction functionWithName:kCAMediaTimingFunctionEaseInEaseOut];
transition.type = kCATransitionFade;
transition.delegate = self;
[self.view.layer addAnimation:transition forKey:nil];
}
[super pushViewController:viewController animated:NO];
}
I'm guessing that once the transition has finished animating, something unsets the refresh/update of the UIview. If so, what?
Any help, gratefully received!