菜鸟教程小白 发表于 2022-12-13 14:42:41

ios - setvalue :forkey: not working, 应用程序崩溃


                                            <p><p>我正在开发一个应用程序。我尝试使用以下代码为 NSDictionary 的特定键设置值,</p>

<pre><code>NSMutableArray *testArray=;

NSMutableArray *testResult=;

NSDictionary *testDetails=;

;
</code></pre>

<p>我的应用程序在第四行崩溃并给出错误,</p>

<pre><code>*** Terminating app due to uncaught exception &#39;NSUnknownKeyException&#39;, reason: &#39;[&lt;__NSDictionaryI 0x1741a2f40&gt; setValue:forUndefinedKey:]: this class is not key value coding-compliant for the key Feb Month.&#39;
</code></pre>

<p>我尝试通过检查来解决这个问题,</p>

<pre><code>po
&lt;extracting data from value failed&gt;
</code></pre>

<p>请帮我解决这个问题。</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>您需要为对象设置<code>testResult</code>,为键设置<code>testArray</code>。现在如果你想改变它的值你需要将它声明为<code>NSMutableDictionary</code>。</p>

<pre><code>NSMutableDictionary *testDetails = ;
;
</code></pre></p>
                                   
                                                <p style="font-size: 20px;">关于ios - setvalue :forkey: not working, 应用程序崩溃,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/41978813/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/41978813/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - setvalue :forkey: not working, 应用程序崩溃