IOS UITableViewRowAction:在单元格上滑动随机工作

时间:2015-07-25 11:43:44

标签: ios swift swipe uitableviewrowaction

我已经实现了editActionsForRowAtIndexPath,当我设法滑动单元格时工作正常,但是滑动手势并不总是被识别,我必须多次滑动直到它随机工作。知道为什么会这样吗?

这是我的代码:

//Implement custom actions on swipe
func tableView(tableView: UITableView, editActionsForRowAtIndexPath indexPath: NSIndexPath) -> [AnyObject]?  {
    var deleteRowAction = UITableViewRowAction()
    var ignoreRowAction = UITableViewRowAction()
    var acceptRowAction = UITableViewRowAction()

    switch (tabSegmentControl.selectedIndex) {
    case 0:
        deleteRowAction = UITableViewRowAction(style: UITableViewRowActionStyle.Default, title: "Remove" , handler: { (action:UITableViewRowAction!, indexPath:NSIndexPath!) -> Void in
            let deleteMenu = UIAlertController(title: nil, message: "Do you really want to remove this friend?", preferredStyle: .ActionSheet)

            let deleteAction = UIAlertAction(title: "Remove", style: UIAlertActionStyle.Default, handler: nil)
            let cancelAction = UIAlertAction(title: "Cancel", style: UIAlertActionStyle.Cancel, handler: nil)

            deleteMenu.addAction(deleteAction)
            deleteMenu.addAction(cancelAction)

            self.presentViewController(deleteMenu, animated: true, completion: nil)
        })
        return [deleteRowAction]

    case 1:

        if let friendR = friendRequests {

        let friendRequest = friendR[indexPath.row]

        deleteRowAction = UITableViewRowAction(style: UITableViewRowActionStyle.Default, title: "Refuse" , handler: { (action:UITableViewRowAction!, indexPath:NSIndexPath!) -> Void in
            let deleteMenu = UIAlertController(title: nil, message: "Do you really want to refuse this request?", preferredStyle: .ActionSheet)

            let deleteAction = UIAlertAction(title: "Remove", style: UIAlertActionStyle.Default, handler: {(alert: UIAlertAction!) in
                    self.friendActions(friendRequest.userId, command: "cancel", indexPath:indexPath)
                }
            )

            let cancelAction = UIAlertAction(title: "Cancel", style: UIAlertActionStyle.Cancel, handler: nil)

            deleteMenu.addAction(deleteAction)
            deleteMenu.addAction(cancelAction)

            self.presentViewController(deleteMenu, animated: true, completion: nil)
        })

        ignoreRowAction = UITableViewRowAction(style: UITableViewRowActionStyle.Normal, title: "Ignore" , handler: { (action:UITableViewRowAction!, indexPath:NSIndexPath!) -> Void in
            let ignoreMenu = UIAlertController(title: nil, message: "Do you really want to ignore this request?", preferredStyle: .ActionSheet)

            let ignoreAction = UIAlertAction(title: "Ignore", style: UIAlertActionStyle.Default, handler: nil)
            let cancelAction = UIAlertAction(title: "Cancel", style: UIAlertActionStyle.Cancel, handler: nil)

            ignoreMenu.addAction(ignoreAction)
            ignoreMenu.addAction(cancelAction)

            self.presentViewController(ignoreMenu, animated: true, completion: nil)
        })

        acceptRowAction = UITableViewRowAction(style: UITableViewRowActionStyle.Normal, title: "Accept" , handler: { (action:UITableViewRowAction!, indexPath:NSIndexPath!) -> Void in
            let acceptMenu = UIAlertController(title: nil, message: "Do you really want to accept this request?", preferredStyle: .ActionSheet)


            let acceptAction = UIAlertAction(title: "Ignore", style: UIAlertActionStyle.Default, handler: nil)
            let cancelAction = UIAlertAction(title: "Cancel", style: UIAlertActionStyle.Cancel, handler: nil)

            acceptMenu.addAction(acceptAction)
            acceptMenu.addAction(cancelAction)

            self.presentViewController(acceptMenu, animated: true, completion: nil)
        })

        acceptRowAction.backgroundColor = UIColor(red: 0.298, green: 0.851, blue: 0.3922, alpha: 1.0);
        }

        return [acceptRowAction, ignoreRowAction, deleteRowAction]

    default:
        break
    }

    return [deleteRowAction]
}

1 个答案:

答案 0 :(得分:1)

我今天遇到了这个问题,发现这是由于竞争手势识别器造成的。判断这是否是您的问题的方法是,仅在非常快速的直线和垂直,从右到左的滑动中触发编辑。

这篇SO帖子也解释了这个问题:

Swipe to delete UITableViewCell very difficult to trigger

您可以通过删除竞争手势识别器或使用UIGestureRecognizerDelegate方法对其进行优先排序来解决此问题:

cout

std::cout