ただふれたものについて書くブログ

あんまり正しくない話を適当に書くブログ

[iOS]StoryBoardでカスタムスタイルを選んだときの挙動の書き方

遷移時にperformが呼び出される。

#import <Foundation/Foundation.h>

@interface MySegue : UIStoryboardSegue
@end

@implementation MySegue 

- (void)perform
{
    // self.sourceViewController  が遷移元コントローラ
    // self.destinationViewController  が遷移先コントローラ
    [[self.sourceViewController navigationController] pushViewController:self.destinationViewController animated:NO];
}

@end