Tagged Questions

4
votes
2answers
421 views

How can I use gestures on iPhone apps using Delphi Firemonkey?

I am trying to write an iPhone app using Delphi XE2 / FireMonkey and have got past many of the initial hurdles, but am now stuck on gesture handling. I have created a test app with a TVertScrollBox, ...
3
votes
1answer
117 views

How to unit test UIGestureRecognizer subclasses?

Has anyone successfully unit tested subclasses of UIGestureRecognizer? What approach do you use or recommend if so? How do you go about synthesizing events if so?
3
votes
3answers
412 views

drawing on iphone

I am trying to develop an iPhone application for children which will be able to draw characters on screen with touch and I want to know how to match the character drawn with good character of the ...
2
votes
1answer
780 views

How to detect a swipe-to-delete gesture in a customized UITableviewCell?

I have customized a UITableViewCell and I want to implement "swipe to delete". But I don't want the default delete button. Instead, I want to do something different. What would be the easiest way to ...
2
votes
1answer
475 views

MPMoviePlayerController fullscreen lockup

I have a strange bug regarding the MPMoviePlayerController. If I do a reverse pinch gesture, (move two touch locations apart), while a video is playing (landscape), the video switches to portrait ...
2
votes
3answers
662 views

IPhone two fingers twist gesture

I need to rotate an image when the user do a two finger twist on it. do you have an idea on how i can code this or if you've done this before. I think it would be a good idea to write a class that ...
2
votes
1answer
3k views

Enabling Swipe-to-delete while showing reorder controls on UITableView

I am looking to allow reordering of UITableViewCells and deleting via swipe to delete, but not via the red delete circle. - (void)loadView { [super loadView]; [table setEditing:YES animated:NO]; } ...
1
vote
1answer
58 views

Trapping gestures in a UIView

This seems simple enough, but I'm stuck. I have a View Controller that respondes to some gestures. I add a subview that is like a "heads up" menu; it covers the entire screen, the background color is ...
1
vote
1answer
82 views

Gestures and usability

I'm currently drawing some mockups of my future iPhone app. One of the app's functionalities is to display a bar graph showing the evolution of a value over time. Users can perform few gestures on ...
1
vote
1answer
278 views

Stealing two-finger pan from mkmapview

I've placed a UIview above an MKMapView with the intention of stealing the two-finger pan from the map view when I am tracking a user's location. If you notice Google maps app does this on the phone ...
1
vote
3answers
442 views

pragmatically scroll UIScrollView upon shake gesture

HI, I have a view that has three UIScrollViews on the screen. I want to randomly scroll the UIScrollViews to different positions whenever a user shakes the iPhone, but I am unable to get it done. I ...
1
vote
4answers
949 views

iPhone UIPickerView Gestures

How would I go about adding gesture events to uipickerview to change tabs? I have to create a custom class, however, I don't know how to handle the uipickerview. I current have gestures present in ...
1
vote
1answer
420 views

Part of website independent of iPhone’s zoom

Is it possible to have a menu bar (navigation bar) on a web site that is independent of iPhone’s zoom (i.e. with fixed width and height) while the rest of the site can be zoomed in and out? With meta ...
0
votes
1answer
414 views

PhoneGap — or something else? For iOS app utilizing Swipes and Pinches

My iOS app needs to utilize "swipes" gestures and "pinches". I'd rather not develop native iOS app myself, but use some tool like PhoneGap or anything like that. I want this to be pretty much a Web ...
0
votes
1answer
38 views

Swipe Gestures and drawing user touches error

i have UISwipeGestureRecognizer that detects if the user has swiped. i also draw the users touches using the touches moved method found in the tutorial below. ...
0
votes
1answer
239 views

Custom gestures on iOS. iPad

I am looking to create my own gestures for my iPad app. I know this can be done but don't know where to start. I read that there is some sample code that can store your custom gestures so you can re ...
0
votes
1answer
119 views

UITapGestureRecognizer not triggered in deep view hiearchy

I have placed a UIGestureRecognizer deep within my uiview hierarchy but it is not being trigger. Here is a general map of the views: UIScrollView > UIView > UIView > UIView > UIView The last view ...
0
votes
2answers
255 views

Selection and highlighting text on a label

I want to select and then highlight the same text on the label with a particular color.Is this be achievable with the help of gestures. And i have to store the position of the highlighted part,even if ...
0
votes
1answer
210 views

Forcing Touches to Multiple Views

I have two overlapping custom views that need to both receive touch events (e.g. touchesBegan and touchesMoved). However I can only get one of the Views (the top one) to receive the events. I have ...
0
votes
2answers
318 views

iPhone SDK / iOS crash in webview / scrollview?

I'm having really strange crash in my application. It occurs randomly. Basically, I'm having large scroll view containing multiple UIWebViews, which I'm loading from HTML string. After some time, ...
0
votes
1answer
355 views

subviews do not resize with pinch gestures

I have several subviews added to a UIScrollview. Every thing works fine when swiping left and right, ie the subviews move with the swipe. When I use the pinch gestures the subviews do not zoom in and ...
0
votes
2answers
212 views

UIGestureRecognizer crashes on < OS3.2

This is to be expected but I can't seem to find a runtime that works properly as it seems it was a private API before!!!! At the moment I have and OS3.1.3 responds to the addGestureRecognizer ...
0
votes
1answer
376 views

How to create and draw a visual swipe gesture

I'd like to try implementing a visual swipe for an iPhone project, like they do in some games, like Fruit Ninja. As you drag your finger around the screen, it leaves a trail that disappears after a ...
0
votes
1answer
418 views

iPhone - Catch horizontal swipes -before- subview

I have a view, that is able to go back to the previous view. Let's say this is a questionnaire. So my main view is the questionnaireView(Controller), and it has a subview which shows a question with ...
0
votes
2answers
163 views

transferring images between two iphones using gestures

I'm wondering if it would be possible at all to transfer data between two different iphones using gestures on one iphone? For instance, flick an image on iphone A and it would show up on iphone B. I ...