2012-10-18 163 views
0

當我們從導航欄返回視圖控制器時,是否有任何方法可以發佈?IOS:導航欄 - 重新加載視圖控制器

我想從導航欄返回到屏幕時重新加載NIB。

可能嗎?

感謝

+0

所以你在你的rootView.xib重新加載它是tabelView? –

+0

你爲什麼要重新加載筆尖?也許你不需要它,你可以以不同的方式需要什麼...... – sergio

回答

1

你可能想看看viewWillAppear:animatedviewDidAppear:animated方法UIViewController。每次推送視圖控制器時都會調用它們。

- (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. 
} 
相關問題