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 ];
謝謝大家。