私は、ios parse sdk (1.9.1) を使用して、xcode で本当に単純なことをしようとしています。UserRecipe という解析カスタム オブジェクトにあるすべてのデータを格納する変数を作成しようとしています。
これが私の解析設定の外観です
以下は私のコードです:
import UIKit
import Parse
//import ParseFacebookUtilsV4
import FBSDKCoreKit
import FBSDKLoginKit
class ViewController: UIViewController {
override func viewDidLoad() {
super.viewDidLoad()
let userRecipe = PFObject(className: "UserRecipe")
print(userRecipe)
}
override func didReceiveMemoryWarning() {
super.didReceiveMemoryWarning()
// Dispose of any resources that can be recreated.
}
}
私のxcodeコンソールログでは、これが返されたものです:
UserRecipe クラスの 5 つのレシピ オブジェクトをパースして返していないようです。誰でもこれで私を助けることができますか?ご協力ありがとうございます