gpt4 book ai didi

xcode - 解析/Swift getObjectInBackgroundWithId 查询不起作用

转载 作者:行者123 更新时间:2023-11-30 10:16:18 25 4
gpt4 key购买 nike

我正在尝试运行查询以获取带有 ID 的后台对象,但是当我运行方法 query.getObjectInBackgroundWithId 时,我收到错误消息:

"Cannot invoke 'getObjectInBackgroundWithId' with an argument list of type (string, block: (PFObject!,NSError?) -> Void"

当我使用 user.signUpInBackgroundWithBlock 时也会发生同样的事情,所以我想也许 Xcode 在使用“block”时更新了一些功能,现在语法可能不同了?有什么想法吗?

这是我的代码片段:

http://imgur.com/1CvfhbU

最佳答案

是的!!!谢谢!

getObject 的新示例代码是:

query.getObjectInBackgroundWithId("Oaq79bhv53") {
(gameScore: PFObject?, error: NSError?) -> Void in
if error == nil && gameScore != nil {
println(gameScore)
} else {
println("error")
}
}

关于xcode - 解析/Swift getObjectInBackgroundWithId 查询不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29806654/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com