我想從iOS設備上本地加載圖像,我加載圖像從本地從iOS設備,但它不是desplaying
我在文件中添加以下代碼,
NSString *path = [NSString stringWithFormat:@"%@/Documents/Small-mario.png", NSHomeDirectory()];
NSLog(@"path %@", path);
displayImg.image = [UIImage imageNamed:path];
路徑的iget是,
/用戶/ WTS-新建/庫/開發商/ CoreSimulator /設備/ F43C26D2-DCFF-4764-AAF0-F6CC7BCDCF5D /數據/集裝箱/數據/應用/ 06FE9A96-7705-4FB7-B291-4716CC6679C3 /文檔/Small-mario.png
但圖像不顯示在imageview中。
imageNamed無法正常工作,使用'NSData的dataWithContentsOfFile:path'然後'的UIImage imageWithData:' – Shubhank
形象「小馬里奧。 png「在你的應用程序包中? – ddb
他的形象「Small-mario.png」在我的畫廊。 @ddb – KAR