使用 StoryBoard 呈现视图控制器的新方法。
UIStoryboard* secondStoryboard = [UIStoryboard storyboardWithName:@"MainStoryboard" bundle:nil];
UINavigationController* secondViewController = [secondStoryboard instantiateViewControllerWithIdentifier:@"Connect"];
[self presentViewController: secondViewController animated:YES completion: NULL];
呈现控制器 Connect 的旧方式是这样的
Connect *connect = [[[Connect alloc] initWithNibName:@"Connect" bundle:nil] autorelease];
[self presentViewController:connect animated:YES completion:NULL];
NSString *userid;
userid=@"123";
[connect setID:userid];
我想以 Storyboard 的方式调用连接控制器的 setID 函数,我该怎么做呢?好像我没有直接获得 Connect 控制器的实例。