FVZoomTransition
provides a new style of push & pop transition.
-
Your target vc must conforms To Protocol
-
Create an FVZoomTransition instance troughth specified method, and passing your navigation controller instance to it. Such as:
- (void)viewDidLoad { [super viewDidLoad]; self.transition = [[FVZoomTransition alloc] initWithNavigationController:self.navigationController]; }
-
According to the requirements in the source and target controller to realize the method specified in the FVZoomTransitionProtocol ,As in the sample code
- (UIView *)viewForZoomTransition:(BOOL)isSource { // Return to the view that you wanted transition }
iOS 7 or above