我在tableview单元格中有一个按钮,它带有一个Alert视图。此alertView可以选择删除该单元格。从编辑或滑动选项中删除其他位置的单元格时,我找不到任何内容。有什么提示吗?
答案 0 :(得分:0)
我猜你也想要为这个过程制作动画。
self.data.removeAtIndex(indexPath.row)
self.tableView.deleteRowsAtIndexPaths([indexPath], withRowAnimation: UITableViewRowAnimation.Fade)
首先需要从用于tableView的数组中删除该单元格的数据。然后,您可以删除特定NSIndexPath上的行。