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?