1
我在我的應用程序中使用elcimagepickercontroller
,當想要從圖庫中選擇圖像時,圖像不會出現,但選擇它時,它會顯示請檢查附件圖像。 圖像沒有出現在相機膠捲中,使用elcimagepickercontroller
我在我的應用程序中使用elcimagepickercontroller
,當想要從圖庫中選擇圖像時,圖像不會出現,但選擇它時,它會顯示請檢查附件圖像。 圖像沒有出現在相機膠捲中,使用elcimagepickercontroller
我固定它改變了孔德從ELCAssetCell.m
在setAssets功能CHAGE:
if (i < [_imageViewArray count]) {
UIImageView *imageView = [_imageViewArray objectAtIndex:i];
imageView.image = [UIImage imageWithCGImage:asset.asset.thumbnail];
}
到
if (i < [_imageViewArray count]) {
UIImageView *imageView = [_imageViewArray objectAtIndex:i];
//changed code:
CGImageRef r1 = asset.asset.thumbnail;
CGImageRef r2 = asset.asset.aspectRatioThumbnail;
imageView.image = [UIImage imageWithCGImage:r1 == nil?r2:r1];
}
它會一直工作到是固定的,總是心裏有你已經改變了這條線,所以檢查更新。
希望有幫助
檢查您是否在嘗試獲取文件(資產)之前向用戶請求訪問圖庫的權限。 – user3344236
這裏沒有要求的權限我測試了它,它適用於iPhone,但在iPad上運行時出現此問題。 –
你正在試圖強制你的iPhone應用程序運行到iPad模擬器,所以請使用通用應用程序,然後運行到iPad。我已檢查並且工作正常。 –