我在Swift中遇到了問題。 我嘗試加載存儲在DocumentsDirectory中的圖像,但它返回nil。UIImage返回零,但存在
下面是代碼:
if NSFileManager.defaultManager().fileExistsAtPath(url!.path!) {
//show image
print("Image " + key + " exists")
if let image = UIImage(contentsOfFile: url!.path!){
return image
}
else {
print("error image")
return nil
}
}
我總是得到「錯誤圖像」,但該文件存在。我不明白這個問題。
感謝,
亨利
不要使用強制解包,你打開門崩潰,如果你使用。 – Cristik
好的,但它仍然不加載圖像.. – user3900157