CATransition push without fade
I'm making a navigation controller class for Mac OS X. I want to replace the current view with a kCATransitionPush animation. Like in this post: Core Animation Tutorial - Wizard Dialog With Transitions The CATransition is set up like this: CATransition *transition = [CATransition animation]; transition.type = kCATransitionPush; transition.subtype = kCATransitionFromLeft; [self.view setAnimations:@{ @"subviews" : transition }]; However, when I replace the views, there is a fade animation, which is being automatically added. [NSAnimationContext beginGrouping]; { [[self.view animator]