Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

24
votes
5answers
35k views

how can i detect the touch event of an UIImageView

I have placed an image (UIImageView) on the navigation bar. Now I want to detect the touch event and want to handle the event. Could you let me know how can I do that? Thanks.
10
votes
2answers
2k views

UIScrollview getting touch events

How can I detect touch points in my UIScrollView? The touches delegate methods are not working.
8
votes
7answers
4k views

How to cancel a sequence of UITouch events?

I have a UIImage view that responds to touch events. I want to cancel the touch sequence, i.e., further calls to touchesMoved:, if the touch goes outside of certain bounds. How can I do that? I know ...
6
votes
3answers
218 views

reloading tableview and touch gestures

I have a tableview which is being reloaded as new content is added, using [tableview reloadData]; Trouble is I have a UILongPressGestureRecognizer on the TableCells in the Table and because the ...
6
votes
2answers
1k views

How to show a PDF page by page using horizontal swipe in iphone?

I want to create a page by page PDF reader. I know how UIWebView can be used to show the PDF but It will load the entire PDF and want to show one page at a time. The PDF is stored locally. Next and ...
6
votes
5answers
4k views

Is there any way at all that I can tell how hard the screen is being pressed

I want to find the pressure of the touch. I just don't know how to accomplish that result with out jailbreaking it and getting the raw touch data. Does anyone know How I would do this?
4
votes
2answers
400 views

How to get rid of this “points” between my lines when I am drawing?

is there an easy way to not draw this points in my lines? I don't know why this points are there because i never release my finger from screen during drawing of a line. I got the code from a drawing ...
4
votes
4answers
1k views

When touches Cancelled method get invoked in iPhone?

I am able to understand that when user just touches the view, touches Began and Ended called. When user swipes their hand on a view, touches Moved method gets called. But when does touches Cancelled ...
4
votes
2answers
2k views

Not receiving touchesEnded/Moved/Cancelled after adding subView

Title more or less says it all. In response to a touchesBegan event, my UIViewController recolours itself and adds some subviews. It never receives the touchesEnded. I guess because the added ...
3
votes
3answers
123 views

How to control the number of simultaneous touches on a view in iOS

I have a UIView which contains almost 10 buttons which performs different actions. The user will be able to touch or tap on any button to perform a required action. But, i am getting a problem when ...
3
votes
1answer
144 views

inches between points iPhone

I need to calculate the distance, in inches, between two touches on any iOS device. Is there a way to get convert pixels to inches in the iOS sdk? This needs to work if you install it on any ...
3
votes
3answers
89 views

Keep two MKMapViews showing the same region

On my iPad app, I have 2 mapViews that are the same size displayed next to each other. I want these to always show the same area. I achieve this now using the regionDidChangeAnimated: delegate ...
3
votes
2answers
572 views

Nested UITableViews: a way to scroll both the outer vertical UITableView and a child horizontal UITableView at the same time?

When you're working with an atypical nested UITableViews setup - where you have an outer vertical UITableView that hosts 90° rotated UITableViews (see: Looking for a UI library to present Data ...
3
votes
1answer
138 views

Pass touch events to one of multiple options

I've created a board of UIImageViews, that are held within a single object as an NSArray. all the imageviews are displayed as subviews of the 'board'(the object that holds the array). What I would ...
3
votes
2answers
3k views

Detect if certain UIView was touched amongst other UIViews

HI Guys, Sorry if this has been answered elsewhere but I can't seem to get it to work. I have 3 UIViews, layered on top of one large uiview. I want to know if the user touches the top one and not ...
3
votes
1answer
2k views

How do you tell what object is being touched in touchesBegan?

I know that this is a very commonly asked question, but all of the answers on every website don't work! If you still don't know what I mean, then maybe this line of code will help you understand. - ...
3
votes
2answers
298 views

Is there a way to retrieve every responder that has handled a UITouch?

I'm trying to debug some touchesBegan/Moved/Ended related slowdown in my game; I think that some of my touch responders are not unloading properly, and so as the game runs on more and more of them ...
2
votes
3answers
114 views

Detecting all touches in an app

In an iPad app, wherever a user is touching the screen I want to display an image, highlighting the points they are touching. The app contains a number of nested views, all of which should receive ...
2
votes
1answer
75 views

iOS touch events not being received in the correct order (touch ended not called at the right time)

So I'm trying to capture the following behavior in this exact sequence touch 1 STARTED touch 1 moved touch 1 moved touch 2 STARTED touch 2 moved touch 2 ENDED touch 1 moved touch 1 moved touch 1 ...
2
votes
2answers
250 views

iOS How to dismiss UIAlertView with one tap anywhere?

I want to dismiss UIAlertView anywhere outside it with one tap. I want to show a UIAlertView without any button. I have standard UIAlertView codes here, but I need input how to dismiss it, if it is ...
2
votes
2answers
105 views

Get Index of Object in TouchesEnded

i have a UIViewController with many UIImageViews. I need in touchEnded event get a index of this UIimage. How do Make? Thank's
2
votes
1answer
116 views

iphone: Paint/Draw with All touches?

How can I paint with with 4 fingers simultaneously. I need UI to interact and respond to all touches. I have seen most of the Apps like GLPaint & many more painting apps which only respond to 1 ...
2
votes
1answer
157 views

How to cancel uitouches?

In my app I want to have the users tap on the left side of the screen to increase their speed and swipe on the right side to work a joystick. However, if the user keeps holding the left side, the ...
2
votes
5answers
227 views

how identify touch in a particular view

How to get touch on a particular view.. I am using CGPoint Location = [[touches anyObject] locationInView:self.view ]; but want to trigger the action only if an particular subView is clicked How to ...
2
votes
1answer
238 views

Detecting touches in MPVolumeView

I'm replicating an MPMediaPlayerView using AVPlayer so I can add some functionality to it. I've created an UIView with play/pause and I display it on a touch and then set a timer to hide it as per the ...
2
votes
2answers
1k views

Rotate the image corresponding to the touch drag in iPhone

I want to rotate the image in clockwise or anticlockwise direction corresponding to the user touch drag with its speed. I think this can be done with some math and logic. What would a code sample for ...
2
votes
1answer
97 views

Have UITouch only perform task when touching certain color

How can I have UITouch recognize and perform a certain task ONLY when I touch a certain color in a UIImage view. For example: I have an image of a street. The street has greyish buildings and a ...
2
votes
3answers
3k views

touchesEnded not being called??? or randomly being called

If I lift my finger up off the first touch, then it will recognize the next touch just fine. It's only when I hold my first touch down continuously and then try and touch a different area with a ...
2
votes
5answers
3k views

Touch events not working on UIViews inside UIScrollView

I have a series of UIViews inside a UIScrollView, and the UIViewControllers for those views are not receiving the touch events. If I take the views out of the scroll view then it works. I have ...
1
vote
2answers
74 views

UITouches “lost” during multitouch

I'm having trouble getting a UIView to respond how I want with multiple touches. Basically certain UITouches are in UITouchPhaseBegan but never make it to UITouchPhaseEnded or UITouchPhaseCancelled. ...
1
vote
1answer
49 views

Call another object's touches begin iOS

Lets say I have view1 which is intercepting touch events and view2 which is not. Can view1 pass those events to view2 and call [view2 touchesBegin] [view2 touchesMoved]...etc?
1
vote
0answers
39 views

iOS 4. UITouch's locationInView doesn't acknowledge retina display. Bug or feature?

Is there a reason that UITouch's locationInView: is unaware of the presence (or not) of a retina display? Why is the rescaling for retina display left as a task for the developer. Seems odd to me. ...
1
vote
0answers
32 views

How to register touches on a different view as a user drags their finger to a new one?

So let's say I have a leftView and a rightView in my iOS app. Right now both views are independently registering touches. If I drag my finger from the leftView to the rightView, the leftView ...
1
vote
0answers
84 views

ImageView Jerks UITouch

I am implementing a UI element where the user can drag image views along the curve of a half-circle (almost looks like the bottom-half of a clock). While the image view moves I rotate it so that it ...
1
vote
1answer
126 views

Accelerating elements with touchesBegan: and touchesEnded:

I have a UIImageView that I try to accelerate based on the distance it has been dragged and how fast it was dragged. By accelerating I mean that when touchesEnded: is called, the imageView should ...
1
vote
2answers
219 views

UIButton TouchUpInside Touch Location

So I have a large UIButton, it is a UIButtonTypeCustom, and the button target is called for UIControlEventTouchUpInside. My question is how can I determine where in the UIButton the touch occured. I ...
1
vote
0answers
166 views

Send UIEvent from iOS device UIView to external screen UIView

I'm working on an app using AirPlay and I need a way to have touches on the main screen act as touches on the UI on my external screen in order to be compatible with a large number of previously ...
1
vote
0answers
49 views

How to add delay to touch events just like the UIScrollView does

How to add delay to touch events just like the UIScrollView does? I want to check move events before passing the touch events to subviews? The UIScrollView could do this, scrolling the subviews ...
1
vote
2answers
107 views

How do I display all touches on screen in order to demo an iPhone app?

Now that we have display mirroring on the iPad 2 (wired now... wireless coming in iOS 5), is there an easy way to display all touches on screen? This would be useful when demoing an app? What I am ...
1
vote
1answer
80 views

How to implement mouse over method?

how to implement mouse over event/method in iphone application??
1
vote
1answer
90 views

How to magnify images?

I am working on playing cards related iphone project. I want to magnify images as soon as I roll over my finger on images. For example you can see in the below screenshot. Please help
1
vote
1answer
183 views

Applying speed and number of rotations for CABasicAnimation

I am trying to mimic the rotation of the bottle in Spin the Coke app and pie-chart in the Roambie App. . I wanted to rotate a view as per the touches and swipes of the user on that view. What I ...
1
vote
1answer
761 views

Limiting CGAffineTransform Scale

I am transforming a view with CGAffineTransformMake. It rotates, scales and translates. This works just fine. But I cannot figure out a way to limit the scale to a maximum size. If the scale is ...
1
vote
2answers
726 views

Smooth rotation of UIView with touch

I'm wondering how to smooth a UITouch in my code. I am able to detect the UItouch on my UIView, but when I try to rotate the view using CGAffineTransform, it does not rotate smoothly. I have to press ...
1
vote
0answers
370 views

Detecting Touch On UIView

Hello All I drawn Pie Chart on a UIView using CGContext of 10 Arcs (pieces or slice). But When I touch on the 1st arc and last arc of this piechart i dont get touch point from them...rest of all ...
1
vote
2answers
486 views

rotate an image with touch

I making an app which sets the sleep timer with a clock .Basically it is clock which has a single hand which user can move to set his sleep time .I tried to rotate the image with uitouch but it ...
1
vote
1answer
287 views

Passing Touch Events

I have a working UIButton in my view controller's view. I have a UIView instance on top of the button (I'll refer to it as topView) in the same view controller's view. If a condition is met I am ...
1
vote
1answer
394 views

I want To track The Speed Of the fingure movement in pixel Per Second Is It Possible Any WaY?

I want to track The speed Of the Touch moved in pixel /Second Any Budy Having idea For This Except the PanGesture Method Thank You In advance
1
vote
3answers
911 views

detecting the [UITouch view] in touchesMoved method

I wish to drag from one subview to another within my application (and connect them with a line), and so I need to keep track of the current view being touched by the user. I thought that I could ...
1
vote
3answers
2k views

How to move a UIImageView after applying CGAffineTransformRotate to it?

I'm building an iPhone app. I have a UIView that contains a set of UIImageView subclass objects. The user can drag and rotate the image views via touch. I'm having trouble moving the image view ...

1 2 3 4 5