我已经创建了一个var userImages = [PFFile]()
并通过用户查询从 Parse 附加了相应的用户图像和self.userImages.append(user["imageFile"] as! PFFile)
. 这工作正常。但是,当我尝试通过
userImages.getDataInBackGroundWithBlock{ (data, error) -> Void in ...
我收到以下错误:**'[(PFFile)]' does not have a member named 'getDataInBackGroundWithBlock'**
为什么这不起作用,这个问题的解决方案可能是什么?
感谢您的帮助!!