StoryBoard中获取独立的UIViewController

1,首先要知道是哪个storyboard,先介绍一下storyboard的三个方法:

  • 下面的方法表示通过storyboard的名字从某个包中获取(一般设置为nil表示从主包中获取)storyboard
+ (UIStoryboard *)storyboardWithName:(NSString *)name bundle:(NSBundle *)storyboardBundleOrNil
  • 此方法获取到storyboard中初始的控制器
- (id)instantiateInitialViewController 
  • 此方法表示通过控制器的identifier获取到此控制器,新版本的Xcode用Storyboard ID来表示某个控制器的identifier
- (id)instantiateViewControllerWithIdentifier:(NSString *)identifier; 

好了,从上面的三个方法应该很多朋友都知道怎么获取Storyboard中单独的控制器了。

2,在storyboard中设置此单独的UIViewController的identifier,即Storyboard ID,用于区分storyboard中的控制器。
3,在类中调用storyboard中的-instantiateViewControllerWithIdentifier:方法获取出单独的VC
MyViewController *vc = [self.storyboard instantiateViewControllerWithIdentifier:@"DuLi"]

4,push或modal出vc即可
[self.navigationController pushViewController:vc animated:YES];

你可能感兴趣的:(StoryBoard中获取独立的UIViewController)