美文网首页
学习笔记:swift——tableview 删除cell效果

学习笔记: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