我想在UITableViewController中实现划动动作,但不显示。

看我的代码:

  override func tableView(tableView: UITableView, commitEditingStyle editingStyle: UITableViewCellEditingStyle, forRowAtIndexPath indexPath: NSIndexPath) {
        }

        override func tableView(tableView: UITableView, canEditRowAtIndexPath indexPath: NSIndexPath) -> Bool {
            return true
        }

        override func tableView(tableView: UITableView, editActionsForRowAtIndexPath indexPath: NSIndexPath) -> [UITableViewRowAction]? {
            let keep = UITableViewRowAction(style: UITableViewRowActionStyle.Default, title: "Profiter"){(UITableViewRowAction,NSIndexPath) -> Void in

                print("hello")
            }

            return [keep]
        }

最佳答案

尝试使用

override func tableView(tableView: UITableView, editActionsForRowAtIndexPath indexPath: NSIndexPath) -> [UITableViewRowAction]? {
    let keep = UITableViewRowAction(style: .Normal, title: "Dude") { action, index in
        print("hello")
    }
    keep.backgroundColor = UIColor.redColor()
    return [keep]
}

关于swift - UITableViewController中的滑动 Action 未快速显示,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/36633411/

10-08 21:17