2015-11-04 75 views
5

我有一個故事板,其中包含用於在NavigationController中推送ViewControllers的各種遊戲。iOS禁用推播遊戲動畫

在故事板我禁用動畫:

enter image description here

但是推還是動畫。爲什麼?

回答

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 

對於每個Segue公司現在的類更改爲這一個你剛創建並在類型下拉菜單中選擇「自定義」。