0

ナビゲーションバーからビューコントローラーに戻ったときに解放されるメソッドはありますか?

ナビゲーションバーから画面に戻ったときにNIBをリロードしたい。

出来ますか?

ありがとう

4

1 に答える 1

2

のメソッドを確認することviewWillAppear:animatedをお勧めします。これらは、ViewControllerがプッシュされて表示されるたびに呼び出されます。viewDidAppear:animatedUIViewController

- (void)viewWillAppear:(BOOL)animated {

    [super viewWillAppear:animated];
    // Reload your data here, and this gets called
    // before the view transition is complete.
}

- (void)viewDidAppear:(BOOL)animated {

    [super viewDidAppear:animated];
    // Reload your data here, and this gets called
    // after the view transition is complete.
}
于 2012-10-18T12:33:47.263 に答える