Tagged Questions

7
votes
4answers
3k views

Is there a high-level gestures library for iPhone development?

The iPhone platform has a number of common gesture idioms. For example, there are taps, pinches, and swipes, each with varying number of fingers. But when you're developing an app, it's up to you to ...
2
votes
2answers
2k views

Gesture recognizer stopped working in iOS 4.3

My gesture recognition code worked fine in iOS 4.2 but in iOS 4.3 it does not work. I can't find any documented changes in gesture recognizers from iOS 4.2 to 4.3 but I have confirmed both on an iPad ...
1
vote
1answer
75 views

UIRotationGestureRecognizer rotation sometimes bumps to very large value

I'm using a UIRotationGestureRecognizer to rotate a UIImageView. By adding all small rotation changes to a CGFloat, I try to calculate the total rotation of the UIImageView. It does fine, but somehow ...
0
votes
2answers
28 views

ios recognizing gestures simultaneously with object handling

Is it possible to recognize gestures and touches simultaneously when interacting with a UIKit object. For example, when a user is scrolling through a slider or pickerview, could I also be handling a ...
0
votes
1answer
242 views

Swiping A View with Gestures

I am trying to develop an application to Iphone; but i am new-bee so i have got a lot of problems. My application has got a default view and another small view in the main view that name is ...
0
votes
0answers
274 views

TapRecognizer in View and Scrollview (to drag and drop images in and out of Scrollview)

I created a view and a scrollview. They both have images inside their view. I'd like to implement a method which makes it possible for the user to drag images in and out of the scroller. I ...
0
votes
2answers
2k views

iPhone - UIWebView Gestures

I have viewcontrollers set up to track gestures and commit an action, in this case, change the tab. The code for the viewcontrollers is as follows: #define HORIZ_SWIPE_DRAG_MIN 100 CGPoint ...
0
votes
2answers
566 views

How do I prevent a specific view from responding to shake gestures?

I use shake gesture for my application but i have problem! My application is a multiview application and i want use shake gesture on the view 2. If i active shake gesture on view 2, I have to write ...