介绍

UITableView单元格的删除是很多时候都会用到的功能,这个功能实现起来也是非常容易的

实现

UITableView其实就在UITableViewDelegate中已经预留好了相应的接口

    func tableView(tableView: UITableView, commitEditingStyle editingStyle: UITableViewCellEditingStyle, forRowAtIndexPath indexPath: NSIndexPath)
    
>这个函数就是对于删除操作的响应了
    func tableView(tableView: UITableView, commitEditingStyle editingStyle: UITableViewCellEditingStyle, forRowAtIndexPath indexPath: NSIndexPath) {
    //对于删除操作
    if editingStyle == .Delete{
        //在Model中删除数据
        dataArray.removeAtIndex(indexPath.row)
        //更新视图
        tableView.deleteRowsAtIndexPaths([indexPath], withRowAnimation: .Automatic)
    }
}

Hydrogen
2.5k 声望73 粉丝

Write code for fun.