这段代码的问题(在func tableView中(tableView:UITableView,commitEditingStyle editingStyle:UITableViewCellEditingStyle,forRowAtIndexPath indexPath:NSIndexPath))
tableView.deleteRowsAtIndexPaths([indexPath],withRowAnimation: .Automatic) if indexPath.row > 1{ tableView.reloadRowsAtIndexPaths([NSIndexPath(forRow: indexPath.row-1,inSection: 0)],withRowAnimation: .None) } if tDate[activeRow].count == 0{ tableView.reloadRowsAtIndexPaths([NSIndexPath(forRow: 0,withRowAnimation: .None) }
是两个reloadRowsAtIndexPaths动画,虽然withRowAnimation:.None被指定.我在这里错过了什么?
在iOS和OS X中通常会出现这样或那样的隐式动画(例如,代码正由其他已经触发动画的代码执行).
原文链接:https://www.f2er.com/swift/319000.html根据我的经验,使用UITableView和UICollectionView控制动画可能特别困难.你最好的选择可能是调用reloadRowsAtIndexPaths:withRowAnimation:进入一个传递给UIView的performWithoutAnimations:方法的闭包:
UIView.performWithoutAnimation { if indexPath.row > 1{ tableView.reloadRowsAtIndexPaths([NSIndexPath(forRow: indexPath.row-1,withRowAnimation: .None) } if tDate[activeRow].count == 0{ tableView.reloadRowsAtIndexPaths([NSIndexPath(forRow: 0,withRowAnimation: .None) } }
注意:在一次发生多个更新之前和之后调用tableView.beginUpdates()和tableView.endUpdates()也不是一个坏主意.