iOS开发之通过纯代码实现两个storyBoard之间的跳转
前置场景:两个storyBoard分别是storyBoard2,3
并且已经设置了storyBoardID,分别是ViewController2,3。
在viewController2中某个方法写代码,准备从s b2跳到s b3
UIViewController *next = [[self storyboard] instantiateViewControllerWithIdentifier:@"ViewController3"]; [self presentModalViewController:next animated:NO];
此种方式确实是可以的,不用连线啥的。
各位网上的朋友写点自己实验过的东西,别瞎转一堆。