UITableView基础[ 5 ] 实现单元格删除功能

介绍

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
    原文地址: https://segmentfault.com/a/1190000004514652
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞