I read a great explain about unwind segues from here: What are Unwind segues for and how do you use them? Then tried in my own project, everything works fine, only one question, as the "push segue" Xcode provides, the unwind segues perform with animation by default, I have to use a custom push segue to get rid of the animation followed by this:Push segue in xcode with no animation
#import <UIKit/UIKit.h>
@interface PushNoAnimationSegue : UIStoryboardSegue
@end
#import "PushNoAnimationSegue.h"
@implementation PushNoAnimationSegue
-(void) perform{
[[[self sourceViewController] navigationController] pushViewController:[self destinationViewController] animated:NO];
}
@end
what can I do to turn off the animation of unwind segues as well. Can anyone help?