关于删除cell某行和清除sqlite对应数据问题

关于删除cell某行和清除sqlite对应数据问题,第1张

概述删除某一tableview的某一行并且删除对应数据。  先删数据库  再删table view! - (void)tableView:(UITableView *)tableView commitEditingStyle:(UITableViewCellEditingStyle)editingStyle forRowAtIndexPath:(NSIndexPath *)indexPath{

删除某一tablevIEw的某一行并且删除对应数据。


先删数据库 再删table vIEw!

- (voID)tableVIEw:(UItableVIEw *)tableVIEw commitEditingStyle:(UItableVIEwCellEditingStyle)editingStyle forRowAtIndexPath:(NSIndexPath *)indexPath{        NSLog(@"%s",__func__);        if(editingStyle == UItableVIEwCellEditingStyleDelete){        //同步数据        makeupModel *makeup = self.makeup[indexPath.row];        [makeup deleteObject];        //删除联系人                                 [self.makeup removeObjectAtIndex:indexPath.row];        //刷新表格        NSIndexPath *deleteIndex = [NSIndexPath indexPathForRow:indexPath.row inSection:0];                [self.tableVIEw deleteRowsAtIndexPaths:@[deleteIndex]                              withRowAnimation:UItableVIEwRowAnimationFade];            }            }

否则会报错:


uncaught exception 'NSInternalinconsistencyException',reason: 'InvalID update: invalID number of rows in section 0. The number of rows contained in an existing section after the update (0) must be equal to the number of rows contained in that section before the update (3),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).'


deleteRowsAtIndexPaths后Section里面的rows数量,和系统调用numberOfRowsInSection时rows数量不一致



我还遇到了一个越界的报错,估计也和代码顺序有关系 如果先删除这一行 在删除数据的时候,因为这行已经删除了,对应的indexpath.row找不到了就越界。。

总结

以上是内存溢出为你收集整理的关于删除cell某行和清除sqlite对应数据问题全部内容,希望文章能够帮你解决关于删除cell某行和清除sqlite对应数据问题所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/sjk/1169077.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-06-02
下一篇 2022-06-02

发表评论

登录后才能评论

评论列表(0条)

保存