学习笔记:swift——tableview 删除cell效果
作者:
独居焚香 | 来源:发表于
2015-12-09 11:11 被阅读1043次override func tableView(tableView: UITableView, commitEditingStyle editingStyle: UITableViewCellEditingStyle, forRowAtIndexPath indexPath: NSIndexPath) {
if editingStyle == .Delete {
tempArray.removeObjectAtIndex(indexPath.row)
tableView.deleteRowsAtIndexPaths([indexPath], withRowAnimation: UITableViewRowAnimation.Automatic)//平滑效果
}
self.tableView.reloadData()
}
本文标题:学习笔记:swift——tableview 删除cell效果
本文链接:https://www.haomeiwen.com/subject/wfnehttx.html
网友评论