ios – 以编程方式刷UITableViewCell?

前端之家收集整理的这篇文章主要介绍了ios – 以编程方式刷UITableViewCell?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
有没有办法以编程方式触发相当于在具有编辑操作的UITableViewCell上向左滑动?这与简单的[tableView setEditing:YES animated:YES]不同,因为该方法将整个表设置为编辑模式,并显示插入/删除左侧附件视图和/或重新排序控件,而不是单行的编辑操作.

解决方法

您可以使用可选的func tableView(_ tableView:UITableView,editingStyleForRowAtIndexPath indexPath:NSIndexPath) – >来自 UITableViewDelegate的UITableViewCellEditingStyle.并返回要滑动的单元格的UITableViewCellEditingStyleDelete.如果要触发滑动,请使用func reloadRowsAtIndexPaths(_ indexPaths:[NSIndexPath],withRowAnimation animation:UITableViewRowAnimation)重新加载该单元格.
原文链接:https://www.f2er.com/iOS/333361.html

猜你在找的iOS相关文章