我已将我的 iOS 解析 SDK 从旧 Parse SDK 迁移到发布的版本以支持托管在我自己的基础架构上的 Parse 堆栈。
我用 SocketIO 设置了我的项目,并决定将从服务器发送的新 Parse 对象附加到我的 iOS 应用程序模型而不是在模型更改时发出新的网络请求,因此我需要实例化一个使用现有对象 ID 解析对象。
为此,我使用了以下代码片段:
let appendError = PFObject(withoutDataWithClassName: "MachineError", objectId: id)
appendError.setValue(errorCode, forKey: "errorCode")
appendError.setValue(errorMessage, forKey: "errorMessage")
appendError.setValue(newDate, forKey: "createDate")
appendError.setValue(serial, forKey: "serialNumber")
appendError.setValue(status, forKey: "status")
appendError.setValue(false, forKey: "completed")
这段代码在我运行 xcode v7.1 时运行良好,但自从今天早上我升级到 xcode 7.3 后,我收到了一个错误,即 withoutDataWithClassName
不是有效参数,它为我提供了 outDataWithClassName
作为替代方案,但该参数的命名听起来不像以前那样具有声明性。我阅读了 iOS 的 PFObject 文档,但找不到任何描述 outDataWithClassName
实际作用的细节。
我只能代表 Parse 团队假设这可能是一个错字,但我可能错了。这里有人可以确认 withoutDataWithClassName
是否等同于 outDataWithClassName
?
看起来这是与自动将 Objective-C 转换为 Swift 相关的错误。报道为issue in the repo ,并在 3 天前提交了修复。
简而言之,outDataWithClassName
目前将与 withoutDataWithClassName
做同样的事情,但由于当前方法名称信息量不大,我建议尽快更新 Parse 以获得修复。
关于ios - 解析 : withoutDataWithClassName is now outDataWithClassName?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37592265/
欢迎光临 OGeek|极客世界-中国程序员成长平台 (https://ogeek.cn/) | Powered by Discuz! X3.4 |