通过getDataInBackgroundWithBlock检索PFFile时出错

时间:2015-06-08 05:31:48

标签: swift parsing pffile

我创建了一个var userImages = [PFFile](),并通过用户查询和self.userImages.append(user["imageFile"] as! PFFile)从Parse添加了相应的用户图像。这很好用。但是,当我尝试通过

设置用户的图像时

userImages.getDataInBackGroundWithBlock{ (data, error) -> Void in ...

我收到以下错误:**'[(PFFile)]' does not have a member named 'getDataInBackGroundWithBlock'**

为什么这不起作用以及可能解决这个问题的方法呢?

感谢您的帮助!!

enter image description here

enter image description here

1 个答案:

答案 0 :(得分:1)

您试图在数组中调用getDataInBackGroundWithBlock尝试使用“

userImages.last?.getDataInBackGroundWithBlock{...}

或者您可以将其保存在变量中并使用新的PFFIle来检索图像

let userImage = user["imageFile"] as! PFFile
userImage.getDataInBackGroundWithBlock{...}

或使用以下方式直接访问:

(user["imageFile"] as! PFFile).getDataInBackGroundWithBlock{...}

角色过程是:

self.userImages.append(user["imageFile"] as! PFFile) //This is just a reference to download the image

userImages.last?.getDataInBackgroundWithBlock {
  (imageData: NSData?, error: NSError?) -> Void in
  if error == nil {
    if let imageData = imageData {
        let image = UIImage(data:imageData) // this is the final image
    }
  }
}