菜鸟教程小白 发表于 2022-12-13 16:52:11

ios - 解析 : withoutDataWithClassName is now outDataWithClassName?


                                            <p><p>我已将我的 iOS 解析 SDK 从旧 Parse SDK 迁移到发布的版本以支持托管在我自己的基础架构上的 Parse 堆栈。</p>

<p>我用 SocketIO 设置了我的项目,并决定将从服务器发送的新 Parse 对象附加到我的 iOS 应用程序模型而不是在模型更改时发出新的网络请求,因此我需要实例化一个使用现有对象 ID 解析对象。</p>

<p>为此,我使用了以下代码片段:</p>

<pre><code>let appendError = PFObject(withoutDataWithClassName: &#34;MachineError&#34;, objectId: id)
appendError.setValue(errorCode, forKey: &#34;errorCode&#34;)
appendError.setValue(errorMessage, forKey: &#34;errorMessage&#34;)
appendError.setValue(newDate, forKey: &#34;createDate&#34;)
appendError.setValue(serial, forKey: &#34;serialNumber&#34;)
appendError.setValue(status, forKey: &#34;status&#34;)
appendError.setValue(false, forKey: &#34;completed&#34;)
</code></pre>

<p>这段代码在我运行 xcode v7.1 时运行良好,但自从今天早上我升级到 xcode 7.3 后,我收到了一个错误,即 <code>withoutDataWithClassName</code> 不是有效参数,它为我提供了 <code>outDataWithClassName</code> 作为替代方案,但该参数的命名听起来不像以前那样具有声明性。我阅读了 iOS 的 PFObject 文档,但找不到任何描述 <code>outDataWithClassName</code> 实际作用的细节。</p>

<p>我只能代表 Parse 团队假设这可能是一个错字,但我可能错了。这里有人可以确认 <code>withoutDataWithClassName</code> 是否等同于 <code>outDataWithClassName</code>? </p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>看起来这是与自动将 Objective-C 转换为 Swift 相关的错误。报道为<a href="https://github.com/ParsePlatform/Parse-SDK-iOS-OSX/issues/806" rel="noreferrer noopener nofollow">issue in the repo</a> ,并在 3 天前提交了修复。</p>

<p>简而言之,<code>outDataWithClassName</code> 目前将与 <code>withoutDataWithClassName</code> 做同样的事情,但由于当前方法名称信息量不大,我建议尽快更新 Parse 以获得修复。</p></p>
                                   
                                                <p style="font-size: 20px;">关于ios - 解析 : withoutDataWithClassName is now outDataWithClassName?,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/37592265/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/37592265/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - 解析 : withoutDataWithClassName is now outDataWithClassName?