菜鸟教程小白 发表于 2022-12-12 23:55:00

iphone - 从 UITableView 插入和删除行时如何正确更新数据源?


                                            <p><p>我正在尝试从 UITableView 中删除一些行,这是我的代码... </p>

<pre><code>    ;
    withRowAnimation:UITableViewRowAnimationAutomatic];
    ;
    noOfRsponses --;
    if (self.segFrndEveryone.selectedSegmentIndex == 0) {
      ;
    }else {
      ;
    }
</code></pre>

<p>其中两个数组之一是我的数据源,取决于所选的段。
我收到以下错误,不知道如何处理。</p>

<blockquote>
<p>The number of rows contained in an existing section after the update
(9) must be equal to the number of rows contained in that section
before the update (9), plus or minus the number of rows inserted or
deleted from that section (0 inserted, 1 deleted) and plus or minus
the number of rows moved into or out of that section (0 moved in, 0
moved out).&#39;</p>
</blockquote></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>您应该在手动更改 <code>UITableView</code> 之前更新您的数据源。</p>

<pre><code>// update the data source for the table change
noOfRsponses--;
NSMutableArray *targetArray = (self.segFrndEveryone.selectedSegmentIndex == 0) ? self.arrFriendComments : self.arrAllComments;
;

// update the table view itself
[ beginUpdates];
[ deleteRowsAtIndexPaths: withRowAnimation:UITableViewRowAnimationAutomatic];
[ endUpdates];
</code></pre></p>
                                   
                                                <p style="font-size: 20px;">关于iphone - 从 UITableView 插入和删除行时如何正确更新数据源?,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/13759553/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/13759553/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: iphone - 从 UITableView 插入和删除行时如何正确更新数据源?