Swift:在右侧滑动时显示动作按钮

时间:2015-04-25 08:48:49

标签: ios uitableview swift

而不是默认的从右到左的方向,我希望滑动从左到右,并在UITableViewCell的左侧显示操作按钮,如下所示:

enter image description here

到目前为止我的代码:

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中对此进行编码。有什么想法吗?

0 个答案:

没有答案