当 UIViewControllers 使用 实例化时- (id)initWithNibName:bundle:
,你可以传入一个包。
有没有办法让实例化的视图控制器找出它的原始包是什么?
我有一个容器 UIViewController ,我想使用创建父级的相同包来实例化它的子级 UIViewController。除了将捆绑包保存为 ivar 之外,还有其他方法可以得到它吗?
ContainerViewController *pvc = [[ContainerViewController alloc]
initWithNibName:nil bundle:[NSBundle mainBundle]];
// inside ContainerViewController:
ChildViewController *cvc = [[ChildViewController alloc]
initWithNibName:nil bundle:parentBundle];