美文网首页ios
iOS 学习笔记之tableView左滑删除

iOS 学习笔记之tableView左滑删除

作者: 董艺璇 | 来源:发表于2016-04-22 22:25 被阅读244次

    简单粗暴贴代码

    override func tableView(tableView: UITableView, canEditRowAtIndexPath indexPath: NSIndexPath) -> Bool {
        return true
    }
    
    override func tableView(tableView: UITableView, titleForDeleteConfirmationButtonForRowAtIndexPath indexPath: NSIndexPath) -> String? {
        return "删除"
    }
    
    override func tableView(tableView: UITableView, commitEditingStyle editingStyle: UITableViewCellEditingStyle, forRowAtIndexPath indexPath: NSIndexPath) {
        //删除数据源中该行对应的值
        xxList.removeAtIndex(indexPath.row)
        tableView.deleteRowsAtIndexPaths([indexPath], withRowAnimation: UITableViewRowAnimation.Fade)
    }
    

    相关文章

      网友评论

        本文标题:iOS 学习笔记之tableView左滑删除

        本文链接:https://www.haomeiwen.com/subject/ghpxrttx.html