菜鸟教程小白 发表于 2022-12-12 15:51:18

ios - 字典的 NSArray


                                            <p><p>我有来自服务器的 <code>NSDictionaries</code> 的 <code>NSArray</code> 为 <code>JSON</code> 格式。我想在 <code>NSdictionaries</code> 的 <code>NSarray</code> 中再添加一个 <code>NSDictinoary</code>。 <code>Nsdictionary</code> 基于键值对。这是我得到的回应。我想将另一个相同格式的字典添加到“表”中。请帮忙..</p>

<p>提前谢谢..!!</p>

<pre><code>Table =   (
                {
            Name = “xyz”;
            Recordid = 3;
            prefrenceorder = 1;
      },
                {
            Name = “ABC”;
            Recordid = 2;
            prefrenceorder = 2;
      },
                {
            Name = “swe”;
            Recordid = 450;
            prefrenceorder = 3;
      },
                {
            Name = “asd”;
            Recordid = 451;
            prefrenceorder = 4;
      }
    );
</code></pre></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>由于来自服务器的 NSArray 是不可变的,因此您需要创建一个新的 NSMutableArray 实例来添加您自己的字典以及来自服务器的响应。</p>

<pre><code>NSMutableArray *newTable = ;
;
</code></pre></p>
                                   
                                                <p style="font-size: 20px;">关于ios - 字典的 NSArray,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/31453335/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/31453335/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - 字典的 NSArray