我对 Xcode 有一点小问题。从现有项目中,我派生了一个静态库(带有源代码)和一个 *.bundle(里面只有一个故事板和故事板中使用的图像)。在第二个项目中,我已经链接了库(它可以正常工作)和包(在构建阶段的复制包资源中有 *.bundle)。当我尝试加载情节提要时,它会加载它但没有图像。有我称之为情节提要的代码:
UIStoryboard *story=[UIStoryboard storyboardWithName:@"MainStoryboard" bundle:[NSBundle bundleWithIdentifier:@"MYCOMPANY.BUNDLE1"]];
MyViewController *libViewContr= [story instantiateInitialViewController];
libViewContr.modalPresentationStyle = UIModalPresentationFullScreen;
[self presentViewController:libViewContr animated:YES completion:nil ];
谢谢大家。