2017-10-04 79 views

回答

0

要創建視圖控制器:

UIViewController * vc = [[UIViewController alloc] init]; 

要調用的圖控制器(必須從另一個視圖控制器中調用):

[self presentViewController:vc animated:YES completion:nil]; 

其一,使用零而不是零。

加載從故事板視圖控制器:

NSString * storyboardName = @"MainStoryboard"; 
UIStoryboard *storyboard = [UIStoryboard storyboardWithName:storyboardName bundle: nil]; 
UIViewController * vc = [storyboard instantiateViewControllerWithIdentifier:@"IDENTIFIER_OF_YOUR_VIEWCONTROLLER"]; 
[self presentViewController:vc animated:YES completion:nil]; 

您的視圖控制器的標識或者是等於你的視圖控制器,或一個故事板ID的類名,你可以在身份檢查分配您故事板。