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!

link|improve this question
check if - (void)pushViewController:(UIViewController *)viewController animated:(BOOL)animated is being called and animated is yes. – fibnochi Feb 9 at 12:54
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.