0
     func tableView(tableView: UITableView, editActionsForRowAtIndexPath indexPath: NSIndexPath) -> [AnyObject]?  {

    var activate = UITableViewRowAction(style: UITableViewRowActionStyle.Normal, title: "Activate") { (action, indexpath) -> Void in

    }

    activate.backgroundColor = UIColor.greenColor()

    var deactivate = UITableViewRowAction(style: UITableViewRowActionStyle.Default, title: "Deactivate" , handler: { (action:UITableViewRowAction!, indexPath:NSIndexPath!) -> Void in

    })



    return [activate, deactivate]
}

这是目前我用来让我能够向左滑动并接收“激活”和“停用”框的代码。

做了一些研究,很多人都说 UITableViewRowAction 没有一种方法可以让你向右滑动而不是向左滑动。我想知道是否有人找到了一些解决方法?

4

1 回答 1

1

这是 Objective C 中的一组类,您可以使用它们来执行此操作:

HHPanningTableViewCell

我对其进行了修改以支持左右滑动。

于 2015-03-09T21:37:56.473 回答