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

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?

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.