而不是默认的从右到左的方向,我希望滑动从左到右,并在UITableViewCell的左侧显示操作按钮,如下所示:
到目前为止我的代码:
func tableView(tableView: UITableView, editActionsForRowAtIndexPath indexPath: NSIndexPath) -> [AnyObject]? {
var myAction = UITableViewRowAction(style: .Default, title: "Action 1", handler: { (action:UITableViewRowAction!, indexPath:NSIndexPath!) -> Void in
//block that runs when 'My Custom Action' button is tapped
})
myAction.backgroundColor = UIColor.blueColor()
return [myAction]
}
func tableView(tableView: UITableView, editingStyleForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCellEditingStyle {
return UITableViewCellEditingStyle.Delete
}
我知道https://github.com/MortimerGoro/MGSwipeTableCell,但我想在swift中对此进行编码。有什么想法吗?