2015-11-04 9 views

答えて

3

このアニメーションはデフォルト動作です。あなたはそうのようなカスタムUIStoryBoardSegueを作成する必要があります。

PushNoAnimationSegue.hは次のとおりです。

#import <UIKit/UIKit.h> 

@interface PushNoAnimationSegue : UIStoryboardSegue 

@end 

PushNoAnimationSegue.mがある:各セグエに対して

#import "PushNoAnimationSegue.h" 

@implementation PushNoAnimationSegue 

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

@end 

今、このいずれかにクラスを変更するには、単に種類ドロップダウンメニューで「カスタム」を選択します。

関連する問題