菜鸟教程小白 发表于 2022-12-12 23:43:14

ios - 创建后如何设置 NSIndexPath


                                            <p><p>我使用以下方法创建了一个 NSIndexPath:</p>

<pre><code>NSIndexPath *indexPath = ;
</code></pre>

<p>现在我想通过修改此路径来通过 UITableView 建立索引,但我找不到任何在 NSIndexPath 中设置值的 API 调用</p>

<p>每次分配一个新的 NSIndexPath 似乎是一种巨大的浪费,特别是因为我实际上使用它来进行不分配任何内存的调用(协议(protocol)的补充)</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><blockquote>
<p>I can&#39;t find any API calls that set values in an NSIndexPath.</p>
</blockquote>

<p>因为没有 - NSIndexPath 是不可变的。</p>

<blockquote>
<p>seems like a huge waste to allocate a new NSIndexPath every time</p>
</blockquote>

<p>是的。对此感到抱歉。如果您关心这个,请将其包装到 <code>@autoreleasepool { }</code> 中。</p></p>
                                   
                                                <p style="font-size: 20px;">关于ios - 创建后如何设置 NSIndexPath,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/13387085/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/13387085/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - 创建后如何设置 NSIndexPath