i try to implement panning and zooming functionality like safari browser in ipad.

i used UIPinchGestureRecognizer for zooming with two fingers touch. but i dont know how to implement two fingers panning.

when i touch with two fingers its tap count is 1.

please help.

thanks in advance.

link|improve this question

70% accept rate
feedback

1 Answer

up vote 1 down vote accepted

You don't want the tapCount, you want the number of touches. If you touch down with two fingers you can two touch events each with a tap count of 1.

- (void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event

[touches count] would return 2, one for each finger tip.

Read through the apple guide for touch events

link|improve this answer
for single finger touch i have to do other action and if user touch with two finger i have to panning of view – priyanka Jul 16 '10 at 4:58
can you please describe in detail – priyanka Jul 19 '10 at 13:24
do you understand the difference between tapCount and the number of touches? – willcodejavaforfood Jul 19 '10 at 13:34
yes i know the difference – priyanka Jul 20 '10 at 5:58
- (void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event{ UITouch *touch = [touches anyObject]; CGPoint thePoint; NSLog(@"%d",[touches count]); } - (void)touchesMoved:(NSSet *)touches withEvent:(UIEvent *)event{ UITouch *touch = [touches anyObject]; CGPoint thePoint; NSLog(@"%d",[touches count]); } but both method log 1 count – priyanka Jul 20 '10 at 8:42
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.