Storyboard での画面遷移前はprepareForSegue メソッドが呼ばれる

投稿者: | 2012/04/15
- (void)prepareForSegue:(UIStoryboardSegue*)segue sender:(id)sender {

    // segue のidentifier で、どの画面遷移か判別する。
    // Storyboard 画面でsegue のidentifier を設定するのを忘れずに。
    if ( [segue.identifier isEqualToString:@"showNextView"] ) {
        // 遷移先のUIViewControllerを指定
        NextViewController* nvc = (NextViewController*)[segue destinationViewController];
        nvc.delegate = self;
        
        /* ここで遷移先画面にデータを渡したりする */
    }

参考

storyboardでnavigation
storyboardでnavigation|tototan
  [dvc setDetailItem:[NSString stringWithFormat:@”%@”,[myData objectAtIndex:selectedIndex] …

コメントを残す

メールアドレスが公開されることはありません。

このサイトはスパムを低減するために Akismet を使っています。コメントデータの処理方法の詳細はこちらをご覧ください