を作成し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'**
これが機能しないのはなぜですか? また、この問題の解決策は何ですか?
お手伝いありがとう!!