The touchesmoved tag has no wiki summary.
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
2answers
4k views
iphone sdk: finding the direction of scrolling in UIScrollView
I have a UIScrollView with only horizontal scrolling allowed, and I would like to know which direction (left, right) the user scrolls. What I did was to subclass the UIScrollView and override the ...
5
votes
0answers
78 views
Impact of using LLVM-GCC to resolve issues on 2nd generation device running iOS 4.2.1
I have an app that uses touch events to draw on the screen. I use UITouch locationInView to return the CGPoint of the touch. The problem is that the x and y coordinates are always the same — BUT only ...
3
votes
1answer
474 views
In subclassed UIImageView, touchesBegan fires, touchesMoved fires a couple times, but then stops for no reason
I have subclassed a UIImageView, and have implemented touchesBegan/Moved/Finished like this:
- (void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event {
NSLog(@"Began");
mouseSwiped = NO;
...
3
votes
2answers
452 views
Scrolling in a UIScrollView without triggering touchesCancelled
Overview
I'm working on an iPhone game whose code I inherited from another developer. The gaming grid is a UIScrollView having a contentSize of 1000x1000. The grid contains several elements drawn on ...
3
votes
4answers
2k views
Why is my subclassed UIView not recieving touches moved when in a UIScrollView?
I have a Class called Boards and it is a subclass of UIView, I allocated an instance of that and put it into a UIScrollView, I want to instead of he touches going to the UIScrollView, but to the ...
2
votes
1answer
65 views
iOS: Objective How To Get One Image At A Time To Glow, As Finger Is Dragged Over Each Of A Series Of Images
Objective: To get one image at a time to glow, as finger is dragged over each of a series of images.
In an attempt to figure this out on my own, I tried to update the Alpha of the touched image to ...
2
votes
2answers
128 views
Free hand drawing on UIView not UIImageView
How to draw a freehand drawing on UIView rather than UIImageView using touches moved method. I have many other subviews on this view so i cannot add image view as whole view.I have seen many examples ...
2
votes
1answer
175 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
1answer
454 views
Anyone have code to substitute for UILongPressGestureRecognizer?
I'd like to support pre 3.2 and this is the only symbol that doesn't want to cooperate, anyone know of some touchesmoved code or something i can use in lieu of the UILongPressGestureRecognizer?
...
2
votes
1answer
2k views
Set center point of UIView after CGAffineTransformMakeRotation
I have a UIView that I want the user to be able to drag around the screen.
-(void)touchesMoved:(NSSet*)touches withEvent:(UIEvent*)event
{
CGPoint pt = [[touches anyObject] locationInView:self];
...
2
votes
1answer
801 views
Drag and Drop in jQuery using Touchevent (iPhone browser)
I using jQuery to listen to the touchstart,touchmove and touchend, and I able to drag the 'dragitem' in iphone Safari(position change that base on the touchmove). But now the issue is how i can make ...
1
vote
3answers
33 views
iPad Landscape messing up touches began
My app is only allowable in the landscape orientations, and it launches in landscape. Thus, the top left corner when the iPad is landscape is (0,0), so everything works fine.
However, when I pick up ...
1
vote
1answer
58 views
Eating a touch that began in one layer and preventing ccMoved calls (or touchesMoved)
Using Cocos2D to create a shoot-em-up bullet hell style game.
One finger drags to move the ship and there are fire layers in the corner.
From my main layer, I detect ccTouchesBegan, ccTouchesMoved ...
1
vote
0answers
92 views
Custom graph with Core Graphics and choppy frame rate when calling touchesMoved
I am creating a custom graph inside a UIView within the drawRect method using core graphics. The problem I am having is moving that graph with the user dragging their finger. For example, if my graph ...
1
vote
0answers
824 views
touchesMoved not firing in iOS5 for the iPhone for UIScrollView
I have an iPhone app with a ScrollView which needs to respond to touch events.
In order to support touch events in the scrollview I needed to base it off a custom class which captured the touch ...
1
vote
1answer
96 views
how do I get the x/y co-ordinates of a UIView origin used within a UINavigationController?
how do I get the x/y co-ordinates of a UIView origin used within a UINavigationController?
That is I have a UINavigationController iPhone app setup. I push a new view, call it CustomUIView, onto the ...
1
vote
1answer
104 views
touchesMoved not registering location
Touchesmoved is not picking up the location of my cursor.
I have this code:
-(void)touchesMoved:(NSSet *)touches withEvent:(UIEvent *)event {
CGPoint touchPoint = [[touches anyObject] ...
1
vote
1answer
335 views
How to support touch move across various objects?
I have some labels in my app like this...
What i need to do is, when clicking on a label, just I'm showing label name in the bottom of the screen. It works fine while clicking on each cell ...
1
vote
2answers
622 views
Passing swipe touches from UIView to underlying UIScrollView for proper scrolling
I have a situation similar to these two posts (1907297 AND 689684) and to describe my situation most concisely, I present this text/graphical layout (similar to what you'd see in IB, dots used to ...
1
vote
3answers
1k 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
232 views
cocos2d determining where on screen user is touching
I am trying to determine where the user is touching in relation to the character on the screen using cocos2d sprites. When the user clicks to the left of the sprite, I want the sprite to run to the ...
1
vote
0answers
185 views
resize imageView on UIButton while moving
In my application I have an overview of objects. Each object is a UIButton, which has its own UIImage (button.imageView). The user can drag objects around. Thereby, objects in the upper part of the ...
1
vote
1answer
447 views
touchesMoved UIView detection
i have 2 uiimageviews foo1,foo2 which are not intersecting each other, and i have 3 functions touchesBegan, touchesMoved, touchesEnded
- (void) touchesMoved:(NSSet *) touches withEvent:(UIEvent *) ...
1
vote
2answers
578 views
kickstarting a touchesMoved/UIPanGestureRecognizer mid-move for a new view
Concept is that a user taps on an icon in a view, a copy of the icon pops up under the user's finger, and they can drag it around until they lift their finger. To do this, I desire the following
...
1
vote
1answer
182 views
Second UIScrollView responding when using a UIScrollView
This is more of a check as I believe this is right but its a lot of work if I'm wrong.
I want to basically achieve fixed positioning with a scrollView. I want to have a list along the top that is ...
1
vote
1answer
222 views
constrain a touchesmoved object from colliding with walls?
I'm trying to create a very simple game where you can drag a simple imageView. The thing is there is a wall in the frame (just a rectangle) on which the image should not go. so I did something like ...
1
vote
1answer
595 views
iPhone multitouch - Some touches dispatch touchesBegan: but not touchesMoved:
I'm developing a multitouch application. One touch is expected to move, and I need to track its position. For all other touches, I need to track their beginnings and endings, but their movement is ...
1
vote
1answer
849 views
Increase frequency calls of touchesMoved
Is there a way to increase the frequency calls of touchesMoved than the default? I need more calls of it to draw a smooth circle. It gets called not too frequent by default and so I get an edgy ...
1
vote
2answers
863 views
Disabling Magnifying Glass in UITextView in an iPhone App
I want to display text and I want to be able to know where in this text a user touches. Because the text could be long, I wanted to use a UITextView so that wrapping and everything would be taken care ...
1
vote
1answer
1k views
How do you get multiple touch buttons to work with touchesBegan/Moved?
I have a bunch of buttons that I want to activate in three different ways.
Touch Down
Touch Down - multiple touch (at the same time)
Touch Drag Inside (The same as dragging your finger over a piano)
...
1
vote
2answers
1k views
TouchesMoved with Button?
Is it possible to use the touchesMoved function with buttons instead of UIImageViews?
1
vote
4answers
710 views
Slide from one button to another without lifting your finger
I have two buttons (Button 1 and button 2) and if I press button 1, note1 starts and if i press button 2, note 2 starts.
So what I try to do is: press button one (note1 starts) and SLIDE to button2 ...
0
votes
2answers
74 views
Scaling with touchesMoved:
I have a pie chart which is made using UIBezierPath's. I now need those individual paths (pie pieces) to be scalable. I believe you need a view to be able to use pinch scaling, so I think ...
0
votes
0answers
13 views
iOS touchesmoved I can see that touch is working on the view … But no movement in the image
I am using couple of UIImageViews. One will be fully rendered on the view like a map and the other will be like a character on the map. I want the 2nd one alone to be moved on the map.
My code ...
0
votes
1answer
35 views
Increase the call-frequency for the touchesMoved-method
I am currently working on an app, which includes a paint function. It actually doesn't work that bad, but the problem is, that the refresh-rate or the frequency of the calls for the ...
0
votes
1answer
52 views
iOS Touches Began susequent touches only arrive if first touch moved
I'm overriding the touches methods in a UIView for a piano app.
If I touch with one finger the iPhone or iPad I get -as expected- the touchesBegan callabck. And if I touch with a second finger I get ...
0
votes
0answers
63 views
Ignoring touchesMoved for subsequent touches while counting touchesBegan total
On the first touches began and all touches moved from that touch I want to perform logic function A (move an image to that point).
On a touchesBegan while an existing touch is active I want to ...
0
votes
3answers
240 views
Touch event handled by multiple views
I have a subclass of UIView on top of a UITableView. I am using the UITableView to display some data and, at the same time, I would like to overlay an animation that follows the finger (for instance, ...
0
votes
1answer
39 views
Is there a way to invert touch position in a view?
I'm writing a method that changes an image and a var based on a touch position in an CGRect. I am currently manually inverting the touch position using a series of if statements. I'm not convinced ...
0
votes
1answer
73 views
Slide to and from UIButtons and make them respond
I am creating a semi-piano app in Objective-C for iPhone; it's in fact a diffrent layout MIDI Controller, but I'm still working on the design.
I created all of the "keys" with UIButtons, and I want ...
0
votes
2answers
66 views
Prevent view object from jumping when moving with finger touch
I've created a 200x200 circle in a custom UIView. I am using the following script to move the view object around the screen on the iPad.
- (void)touchesMoved:(NSSet *)touches withEvent:(UIEvent ...
0
votes
0answers
53 views
Drawing Line with shadow using CoreGraphics
How can i using CoreGraphics to draw the line whit shadow in touchesMoved?
this is my drawing resault:
http://www.de-rossi.info/imgtemp/Screen%20shot%202011-11-10%20at%2019.00.33.png
and i want it ...
0
votes
0answers
48 views
Moving a view inside another view on Touches
I have a main view and I create more views on it upon touchesBegan,
I want to be able to move the views on top of the background view without moving the main view.
what I have at this moment is:
...
0
votes
0answers
94 views
TouchesMoved Help?
I am trying to create four touchable and movable labels on a UIView..
When I touch a "ifAnimaPart01" somehow they are all gathered in one location and i can not touch and move other labels.I also used ...
0
votes
1answer
160 views
Drawing with touchesMoved
I'm trying to create code for drawing what the user draws with his finger. I used the following code for this:
-(void)touchesMoved:(NSSet *)touches withEvent:(UIEvent *)event {
UITouch *touch = ...
0
votes
1answer
73 views
Return object to original position on TouchesEnded?
I am trying to do a very basic thing but I am new to this.
Basically I have a screen with a 3 objects that can move around,
I have implemented a method which I call when TouchesMoved happens -
if ...
0
votes
3answers
160 views
Have Multiple Moving UIImage Views With Different Touches
I am working on trying to get multiple UIImageViews to move when they are dragged. I was originally putting all the movement under TouchesBegan. However, when I drag a single object, they all ...
0
votes
0answers
123 views
Delay touchesMoved Until Moved a Certain Distance
Is there a systematic way to ignore touches until they have moved a preset distance?
For example, lets say I had a view that I wanted to have moved with a touch and drag. However I only want the view ...
0
votes
2answers
204 views
Draggable UIButton does not respond to UIControlEvents
When creating a Draggable UIButton, the dragging events work as they should, however, I am unable to figure out why the UIControlEvents do not respond when the button is simply pressed and not ...