I solve the problem above using custom segue. I created a custom segue by extending the UIStoryboardSegue class and adding code to the presentModalViewController without animation. Here is a solution to the above question.
#import "ModalViewWithoutAnimation.h" @implementation ModalViewWithoutAnimation - (void)perform { [self.sourceViewController presentModalViewController:self.destinationViewController animated:NO]; } @end
thanks
user346749
source share