2012-09-14 80 views
0

我只是用Xcode的一個小問題。從現有的項目中,我推導出一個靜態庫(帶有源代碼)和一個* .bundle(裏面只有一個故事板和故事板中使用的圖像)。在第二個項目中,我鏈接了庫(它正常工作)和包(在構建階段的複製包資源中有* .bundle)。當我嘗試加載故事板時,它會加載它,但沒有圖像。 還有就是我所說的故事板代碼:iOS從包中加載資源

UIStoryboard *story=[UIStoryboard storyboardWithName:@"MainStoryboard" bundle:[NSBundle bundleWithIdentifier:@"MYCOMPANY.BUNDLE1"]]; 

MyViewController *libViewContr= [story instantiateInitialViewController]; 

libViewContr.modalPresentationStyle = UIModalPresentationFullScreen;     
[self presentViewController:libViewContr animated:YES completion:nil ]; 

謝謝大家。

回答

0

我有同樣的問題。我發現png資產在構建捆綁包時被壓縮爲.tiff格式。您可以通過在目標設置中將「合併高分辨率圖稿」設置爲FALSE/NO來禁用此功能。