菜鸟教程小白 发表于 2022-12-12 17:53:33

iphone - 从 TableView 委托(delegate)外的 UITableView 中删除行


                                            <p><p>我正在尝试从委托(delegate)方法之外的 UITableview 中删除一行。当我单击表格单元格内的按钮并尝试删除该方法内的行时,我正在调用一个方法。
这是我正在使用的功能</p>

<pre><code>UIButton *btn = (UIButton*)sender;
int tag = btn.tag;
UITableViewCell *buttonCell = (UITableViewCell*)[ superview];
NSIndexPath *indexPath = ;
;
withRowAnimation:UITableViewRowAnimationTop];NSInteger buttonRow = indexPath.row;
;
</code></pre>

<p>使用这一行或两行会被删除,但之后它会崩溃并给出异常</p>

<blockquote>
<p>Number of rows before and after deletion must be same</p>
</blockquote>

<p>如何在 ios 中执行此操作?
谢谢</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>您的问题是用于填充表格的数据与删除单元格后的表格不一致。确保您的 dataSource 方法在执行此操作后提供正确的数据(例如,如果它是用于填充表的对象数组,则您也必须从数组中删除该对象)</p></p>
                                   
                                                <p style="font-size: 20px;">关于iphone - 从 TableView 委托(delegate)外的 UITableView 中删除行,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/7784582/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/7784582/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: iphone - 从 TableView 委托(delegate)外的 UITableView 中删除行