本文介绍了“在解开可选值时意外地发现nil”当从Parse.com重新启动PFFile时的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

当我检索存储在Parse.com中的PFFile时出现问题

i've a problem when i retrieve a PFFile stored in Parse.com

let user = PFUser.currentUser()
let userImageFile = user["profileImage"] as PFFile
            userImageFile.getDataInBackgroundWithBlock {
                (imageData: NSData!, error: NSError!) -> Void in
                if error == nil {
                    if imageData != nil{
                        let image = UIImage(data:imageData)
                        self.profileImage.image = image
                    }
                }
            }

错误从第二行开始即可。
列profileImage存在,但它可以为空。

The error start at line two.Column "profileImage" exists, but it can be empty.

有人可以帮助我吗?
谢谢。

Someone can help me?Thank you.

推荐答案

尝试:

if let userImageFile = user["profileImage"] as? PFFile {

}

这篇关于“在解开可选值时意外地发现nil”当从Parse.com重新启动PFFile时的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

05-19 10:57