0

Swipe GestureはスワイプUISwipeGestureRecognizerの終了位置を伝えることができず (これは奇妙なことです)、UIPanGestureRecognizerこの質問で説明されているように、代わりに使用する必要があると言われています: UISwipeGestureRecognizer Swipe length

でもその方法だと、代わりにtouchesBeganとを使っても同じじゃないですか。代わりtouchesEndedに使用する理由や利点はありますか?UIPanGestureRecognizer

4

1 に答える 1

1

You can use either ... depends on your choice. It actually depends on your requirement and what you really want to do. If you want to use UITouch you can go ahead .

Also in the link you provided there is the last answer "You can only do it a standard way: remember the touch point of touchBegin and compare the point from touchEnd."

So touches is a lengthier method whereas using gestures makes your code look less .

于 2012-09-20T07:13:23.363 に答える