熱烈歡迎,請直接點選!!!
進入博主App Store主頁,下載使用各個作品!!!
注:博主將堅持每月上線一個新app!!
圖片在Assets.xcassets中,
UIImage *image = [UIImage imageNamed:@"圖片名稱"]; [[UIImageView alloc] initWithImage:image]; UIImageView *test = [[UIImageView alloc]init]; [test setImage: image];
以上方法從TestFlight下載測試App,載入圖片失效。
思考:
TestFlight下載的App,是Release模式下,載入圖片失效,
Xcode安裝App,是Debug模式下,圖片載入正常。
修復方法:
【專案Targe】-【Build Settings】-【Swift Compiler-Code Generation】-【Optimization Level】-【Release模式】修改為【No Optimization[-Onone]】
修復方法二:
請參看我以前發的文章:
提取App的ipa檔案:https://www.cnblogs.com/strengthen/p/17163430.html
獲取Assets檔案,把不顯示的圖片新增到工程中。