I implemented a custom segue in my storyboard with a navigation controller, it transitions, but without an animation. Why?
advancePage.h
#import <UIKit/UIKit.h>
@interface advancePage : UIStoryboardSegue
@end
advancePage.m
#import "advancePage.h"
@implementation advancePage
- (void)perform {
NSLog(@"custommmm");
UIViewController *src = (UIViewController *) self.sourceViewController;
UIViewController *dst = (UIViewController *) self.destinationViewController;
[UIView transitionWithView:src.navigationController.view duration:0.2
options:UIViewAnimationTransitionCurlDown
animations:^{
[src.navigationController pushViewController:dst animated:NO];
}
completion:NULL];
}
@end
I made the segue in the storyboard and set it to custom and made the segue class name: advancePage. I know the method is being call from the NSLog but why is there no transition?