iOS – 从UIImageView中的Parse检索并显示图像(Swift 1.2错误)

我以前一直在从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)
        }
    }
}

相关文章

当我们远离最新的 iOS 16 更新版本时,我们听到了困扰 Apple...
欧版/美版 特别说一下,美版选错了 可能会永久丧失4G,不过只...
一般在接外包的时候, 通常第三方需要安装你的app进行测...
前言为了让更多的人永远记住12月13日,各大厂都在这一天将应...