解析检索错误的PFFile

时间:2016-12-31 21:32:22

标签: ios swift parse-platform

我正在尝试根据附加到我从中提取imageFile的同一对象的objectID来检索PFFile图像。所有其他细节都被正确拉出(字符串)然而,当我拉动PFFile时,该类的随机图像加载,通常不是该对象的匹配图像,下面是我的查询方式,我不确定在哪里我的逻辑不正确。

{{1}}

1 个答案:

答案 0 :(得分:0)

getDataInBackground for内添加loop。以下是代码的快速示例3。

   @IBOutlet weak var fullImage : UIImageView!



           let imageFile = (object.object(forKey: "ImageFile") as? PFFile)
                        imageFile?.getDataInBackground (block: { (data, error) -> Void in
                                        if error == nil {
                                            if let imageData = data {
                                                //Here you can cast it as a UIImage or do what you need to
                                                self.fullImage.image = UIImage(data:imageData)
                                             }
                                       }
            })