0

我对 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 ];

谢谢大家。

4

1 回答 1

0

我有同样的问题。我发现在构建捆绑包时将 png 资产压缩为 .tiff 格式。您可以通过将目标设置中的“组合高分辨率艺术品”设置为 FALSE/NO 来禁用此功能。

于 2013-05-06T10:48:31.733 回答