2014-02-27 42 views
0

Im ,,使用故事板開發iphone應用程序。這是我的第一個故事板應用程序。 NavigationController中嵌入了幾個ViewControllers。我想要做的是當我點擊一個按鈕時,已經嵌入導航控制器的另一個ViewController應該可見爲PresentModelViewController。但我不能使用self.navigationController.PresentModelViewcontroller,因爲它顯示爲已棄用。如何在故事板中顯示已經嵌入導航控制器中的視圖控制器。如何在StoryBoard中顯示PresentModelViewController

請幫幫我,謝謝

回答

0

這裏是呈現一個視圖控制器模型視圖控制器的簡單方法,

//set an identifier of your view controller 
NSString *identifier = @"IdentifierOfTheViewController"; 
//initiate your view controller 
YourViewController *yourController = [self.storyboard instantiateViewControllerWithIdentifier:identifier]; 
//add it as modelViewCotrller 
[self presentViewController:yourController animated:YES completion:nil ]; 

就這麼簡單:)

1

,如果我得到你的問題很好,here是在storybard模式呈現一個簡單的教程。

presentModelViewcontroller已被棄用,你不適當地調用它,你應該這樣做:

[self.navigationController presentViewController:VC animated:YES completion:nil]; 
相關問題