2

セルをスワイプすると正常に機能する実装を実装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]
}
4

1 に答える 1

1

今日この問題に遭遇したところ、競合するジェスチャ レコグナイザーが原因であることがわかりました。これが問題であるかどうかを判断する方法は、右から左へ、非常にまっすぐで垂直な非常に高速なスワイプでのみ編集がトリガーされるかどうかです。

この SO 投稿では、この問題についても説明しています。

スワイプしてUITableViewCellを削除するのは非常に難しい

競合するジェスチャ レコグナイザーを削除するか、UIGestureRecognizerDelegate メソッドを使用してそれらを優先することで解決できます。

- (BOOL)gestureRecognizer:(UIGestureRecognizer *)gestureRecognizer shouldBeRequiredToFailByGestureRecognizer:(UIGestureRecognizer *)otherGestureRecognizer

また

-(BOOL)gestureRecognizer:(UIGestureRecognizer *)gestureRecognizer shouldRecognizeSimultaneouslyWithGestureRecognizer:(UIGestureRecognizer *)otherGestureRecognizer
于 2015-10-13T19:00:30.323 に答える