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

How to remove the transition effect from a modal segue when displaying the modal like this: [self performSegueWithIdentifier:@"SomeIdentifier" sender:self];

I know I can go into the storyboard and toggle between 4 different animations but I don't want any!!! How do I remove????

I know I could say presentModalViewController animated: NO but I do not and can not call it this way. I need to use the performSegueWithIdentifier method

share|improve this question

2 Answers

up vote 4 down vote accepted

You need to make a custom segue (without the animation) if you need a segue but don't want the animation.

You should look at Apples "creating custom segues" example in the view controller programming guide, they do a custom modal segue without an animation (just like you wanted).

share|improve this answer
Excellent muchos gracias. – MobileMon Aug 7 '12 at 11:12

Here's the full source of a no-animation segue:

BVNoAnimationSegue.h

#import <UIKit/UIKit.h>
@interface BVNoAnimationSegue : UIStoryboardSegue
@end

BVNoAnimationSegue.m

#import "BVNoAnimationSegue.h"

@implementation BVNoAnimationSegue

- (void)perform
{
    [[self sourceViewController] presentModalViewController:[self destinationViewController] animated:NO];
}

@end

To use this, add the files to your project (e.g. as BVNoAnimationSegue.m/.h) then in storyboard, select 'Custom' as your Segue type and type BVNoAnimationSegue in the Segue Class box. After you've done this Xcode seems to be clever enough to add 'no animation segue' as an option when you CTRL-drag between UIViewControllers in future.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.