Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

i am using this code to perform an RTL push segue:

- (void) perform {
    UINavigationController *navigationController = [self.sourceViewController navigationController];
    CATransition* transition = [CATransition animation];
    transition.duration = 0.5;
    transition.timingFunction = [CAMediaTimingFunction functionWithName:kCAMediaTimingFunctionEaseInEaseOut];
    transition.type = kCATransitionPush; //kCATransitionMoveIn; //, kCATransitionPush, kCATransitionReveal, kCATransitionFade
    transition.subtype = kCATransitionFromLeft; //kCATransitionFromLeft, kCATransitionFromRight, kCATransitionFromTop, kCATransitionFromBottom
    [navigationController.view.layer addAnimation:transition forKey:nil];
    [navigationController pushViewController:self.destinationViewController animated:NO];
}

following this answer: How to change the Push and Pop animations in a navigation based app

however, the screen that disappears becomes black a second before fading to the right. i guess this has to do with the inner management of the UINavigationController. any ideas how i can make this work smoothly?

share|improve this question

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

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.