我以前一直在从Parse后端检索图像,使用以下代码行在UI
ImageView中的应用程序中显示:
let userPicture = PFUser.currentUser()["picture"] as PFFile userPicture.getDataInBackgroundWithBlock { (imageData:NSData,error:NSError) -> Void in if (error == nil) { self.dpImage.image = UIImage(data:imageData) } }
但我得到错误:
‘AnyObject?’ is not convertible to ‘PFFile’; did you mean to use ‘as!’
to force downcast?
“有用的”Apple修复技巧提示“as!”改变所以我添加!,但后来我得到错误:
‘AnyObject?’ is not convertible to ‘PFFile’
使用’getDataInBackgroundWithBlock’部分,我也得到错误:
Cannot invoke ‘getDataInBackgroundWithBlock’ with an argument list of type ‘((NSData,NSError) -> Void)’
有人可以解释如何从Parse正确检索照片并使用Swift 1.2在UIImageView中显示它吗?
解决方法
PFUser.currentUser()返回可选类型(Self?).因此,您应该将返回值解包为按下标访问元素.
PFUser.currentUser()?["picture"]
下标得到的值也是可选类型.因此,您应该使用可选绑定来转换值,因为类型转换可能会失败.
if let userPicture = PFUser.currentUser()?["picture"] as? PFFile {
getDataInBackgroundWithBlock()方法的结果块的参数都是可选类型(NSData?和NSError?).所以你应该为参数指定可选类型,而不是NSData和NSError.
userPicture.getDataInBackgroundWithBlock { (imageData: NSData?,error: NSError?) -> Void in
if let userPicture = PFUser.currentUser()?["picture"] as? PFFile { userPicture.getDataInBackgroundWithBlock { (imageData: NSData?,error: NSError?) -> Void in if (error == nil) { self.dpImage.image = UIImage(data:imageData) } } }