storyboard 中如何从一个viewcontroller跳转到另外一个storyboard

困扰了好久,总算摸清门路了,虽然今后工作中不一定能用到。算是了却一桩心事吧。


UIStoryboard *storyboard = [UIStoryboardstoryboardWithName:@"MainStoryboard"bundle:nil];

SubViewController  *v2=[storyboardinstantiateViewControllerWithIdentifier:@"SubViewController"];

    

[self.viewaddSubview:v2.view];


注意要修改 SubViewController 所对应 viewcontroller的storyboard id。

你可能感兴趣的:(IOS)