学习笔记:swift——tableview 删除cell效果

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效果)