iOS UITableView删除组中唯一行,即[UITableView _endCellAnimationsWithContext:] warning

Posted chrisbin

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了iOS UITableView删除组中唯一行,即[UITableView _endCellAnimationsWithContext:] warning相关的知识,希望对你有一定的参考价值。

ios项目中要删除某一行,此行是此组中最后一行,在使用 UITableView 的方法: 

self.tableView.deleteRowsAtIndexPaths([indexPath], withRowAnimation: .None)

但未能成功,Warning:Assertion failure in -[UITableView _endCellAnimationsWithContext:], /SourceCache/UIKit_Sim/UIKit-2372/UITableView.m:1070

后查找Baidu发现一篇博客:http://blog.sina.com.cn/s/blog_7b9d64af0101b6se.html 

修改代码:

self.tableView.beginUpdates()
self.tableView.deleteSections(NSIndexSet(index: indexPath.section), withRowAnimation: .None)
self.tableView.deleteRowsAtIndexPaths([indexPath], withRowAnimation: .None)
self.tableView.endUpdates()

 

以上是关于iOS UITableView删除组中唯一行,即[UITableView _endCellAnimationsWithContext:] warning的主要内容,如果未能解决你的问题,请参考以下文章

iOS - 从 UITableView 中删除行没有动画

iOS:ViewDeck 库并从 UITableView 中删除行

如何在 Swift / iOS 中从 UITableView 中删除行并从 UserDefaults 中更新数组

从 UITableView 中删除行会更改存储在其他行中的信息

从 uitableview 隐藏或删除部分

Swift UITableView 删除行项 - tableview 数据源是 Core Data