为什么"对象:[PFObject]?" Parse的findObjectsInBackgroundWithBlock函数的参数返回nil?

时间:2015-12-18 14:43:54

标签: ios swift parse-platform null pfobject

这是Parse上现有的一个名为" HellsKitchen"我已经尝试了其他人,但总是在对象上收到零。

    let query = PFQuery(className: "HellsKitchen")
    query.findObjectsInBackgroundWithBlock { (objects: [PFObject]?, error: NSError?) -> Void in
        if error == nil {
            print("got em: \(objects)")
        } else {
            print("error: \(error!.userInfo)")
        }
    }

关于这个的所有其他帖子都指的是当他们将对象作为[AnyObject]时的块闭包?但它已经在2015年末的某个时候发生了变化,我不再需要像PFObject那样把它变成所有的答案。

我尝试过添加应用传输安全设置>对我的Info.plist允许任意加载= YES无效。

我也没有收到任何错误。它传入if语句,因为错误== nil并打印"得到了em:nil"。

如何获取我的物品?

0 个答案:

没有答案