The touchesmoved tag has no wiki summary.
-1
votes
1answer
49 views
OpenGLES 2.0 Rotate by touchesMoved [closed]
I want to use the touchesMoved method to rotate an image on the screen.
So if i move my finger from the right to the left side, i want my
image to rotate from left to right.
Is this somehow possible?
...
0
votes
1answer
61 views
Moving a UIImageView without using the center property
Basically I would just like to touch the image and have it move with my finger across the screen without using theImage.center = touchPosition
I don't want to have the center snap to my finger. I ...
0
votes
1answer
100 views
touchesMoved:withEvent: stops to respond
I've applied this stackoverflow entry so that I can detect the touch as it moves from one view to the other.
The subviews really detect the touch. However, I'm doing something more. I need the view ...
0
votes
1answer
111 views
Check when user slides over UIView - touchesMoved too laggy
I know there are better ways to achieve drawing tools using CoreGraphics and what-not, I'm using this UIView method because I want to achieve a pixelated effect and I have some other custom stuff in ...
0
votes
0answers
39 views
iPad Image Dragging not working
I'm a beginner in iOS (and new to stackoverflow!) and I've been trying to implement dragging functionality on the iPad. Since my app will be universal, I already have it working on the iPhone using ...
0
votes
1answer
176 views
how can i move a UIBezierPath object with touchesMoved?
After drawing lines and circles from bezier path objects i want to now move these objects across the screen. First as i touch on the path object it should get selected which i have done using ...
1
vote
2answers
134 views
In touchesMoved, how to detect a slide motion and then a stop?
I can already detect a slide motion in touchesMoved, but I was wondering how to detect a slide and then detect when the slide stops but the finger is still pressed on screen?
Here's my code so far:
...
0
votes
3answers
166 views
Make a UIView draggable with the finger
I have the mainViewController but I have an small UIView inside that is activated when you tap a MKAnnotationView in the MKMapKit, so I need that UIView to be draggable in any part of the screen.
An ...
2
votes
1answer
65 views
How to only look for upwards swipes on touchesMoved
I am currently using touchesMoved to allow the user to swipe upwards and the more they swipe upwards, the greater the number increase will be. I don't think I can use a UIGestureRecognizer here, ...
0
votes
0answers
44 views
How to detect the frame of mainView taped from a MKViewMap
I have a MKMapView in the whole UIViewController from the mainViewController.xib, so now I was using this method:
- (void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event
{
UITouch ...
0
votes
1answer
115 views
Programmatically added subview doesn't interact with other views, but xib-added view worked fine
harlanhaskins wrote:
I have a view called userSlider programmaticaly added in viewDidLoad:
self.userSlider = [[UserSliderView alloc] initWithFrame:CGRectMake(0, -120, 320, 155)];
...
1
vote
1answer
95 views
UIImageView overlapping effect inside a UIView
Check this URL http://krystalrae.com/
Scrolling down you will see a girl's cloths are changing on mouse wheel scrolling.
I have to create a iPad application where 3 images will appear likewise. The ...
0
votes
0answers
98 views
touchesMoved called instead of touchesBegan when second tap is close to first tap
Steps to repeat:
Tap somewhere on the view and hold.
Tap somewhere close and above the first tapped point (e.g. around 20 pixels above)
I'm expecting to see touchesBegan called for the 2nd tap. ...
0
votes
2answers
232 views
Touches method in UIViewController and UIView
I'm working on iPad app. My UIViewController contains only a custom UIView with a size of 500wx500h.
I implemented the touches methods both in the UIViewController and the custom UIView in order to ...
2
votes
2answers
247 views
Stretchy UIBezierPath line?
I want to draw a straight line with my finger that automatically sizes based upon how far away I am from the point of origin.
So if I touch the screen in the middle and slide my finger out a line ...
0
votes
1answer
144 views
iOS: UIVIew touches delegates vs single tap recognizer
I am handling Touches delegates and UITapGestureRecognizer for single tap. Following are the methods. When I single tap on my View, I get three events in order of TouchesBegan, SingleTap, and ...
0
votes
2answers
68 views
Presentation overlay for iOS
When I demo my touch apps to remote teams the people on the other end dont know where I am touching. To remedy this, I have been working on an event intercepting view/window that can display touches ...
0
votes
2answers
50 views
Creating a draggable image view
I have been searching the net for a long time and I have not found a concrete way of making an image view draggable. Here is what I have so far:
tempViewController.h
#import <UIKit/UIKit.h>
...
0
votes
2answers
141 views
touchesMoved reaching out of my view bounds
I have subclassed UIView and there initially my view will be in a default color and i need to fill some different color on touch (from x axis = 0 to user touched point),here the problem is ...
0
votes
0answers
89 views
Convert uiimage to grayscale on finger touch using touches moved method objective c [closed]
Currently i am adding small images of gray scale version of the same image but it is not as good.Color splash app using this functionality i want to use this in my app too
...
1
vote
1answer
123 views
UISwipeGestureRecognizer: How to force the touchesMoved stop and go into touchesEnded
I am working with UISwipeGestureRecognizer. I have the following problem. When I touch a square, it starts rotating.When I stop touching it, it stops rotating. I would like to do, with a timer, when ...
0
votes
1answer
89 views
touchesbegan and touchesmoved
My question is when i hold down a button it has a sound at this time i touch on the same button of my another finger, it has a sound also. So can i disable another touch when i have already hold down ...
0
votes
0answers
30 views
How do I prevent adding multiple Subviews?
I am adding new images as a sub view to my view in my app.
I'm doing this in two different methods.
One is by gesture, I am essentially "stamping" the image onto the view, then when ...
0
votes
1answer
103 views
Dragging an view in limited boundaries not beyond that
After googling a lot and still not finding any solution, I am asking a question.
My question is:- I want to drag my view in a particular area, beyond that, I do not want my view to drag but it should ...
1
vote
0answers
123 views
touchesBegan/touchesMoved
First of all thank you for reading this post. I really tried to find the answer myself but I have not been able to.
My problem is the following. I am trying to do an app in which you have an image ...
0
votes
3answers
137 views
How to add images while moving finger across UIView?
I am having issues adding an image across a view while moving finger across the screen.
Currently it is adding the image multiple times but squeezing them too close together and not really following ...
0
votes
2answers
263 views
Get current touch in touchesMoved
I want to get the current object touched in touchesMoved. This is not to be confused with the touchLocation (CGPoint), but the actual object the user is touching. Using UITouch always returns the ...
0
votes
1answer
147 views
touchesMoved not working fast enough
I want when user slides from left to right label counter updates from 1 to 5. If I swipe slowly, very slowly it works, faster then that and it doesn't work right? Is there another way to implement ...
0
votes
1answer
187 views
touchesMoved for Multiple UIImageViews
I have multiple UIImageViews placed producing an NxN grid view on a UIView added programmatically, and all have their userInteractionEnabled property set to YES.
EDITED
I now have another issue, ...
0
votes
0answers
72 views
UIImageview Door Animation
I am needing some help in creating a UIImageView door animation where two sliding doors can be draggable and reflective of the other doors movement. (Think of a grocery store that has a set of ...
0
votes
1answer
107 views
Why does a UIImageView move all crazy when touchesBegan starts at the UIImageView?
So I create an UIImageView programmatically and I place it on an array. In touchesMoved I set the x-position of the UIImageView to the x-position of the touch.
- (void)touchesBegan:(NSSet *)touches ...
1
vote
1answer
419 views
Drawing circles in iOS touches moved
My code was working when I was using UIViews and changing their background color. Now I try it with ellipses and they don't show up? Here is the code:
- (void)viewDidLoad
{
[super viewDidLoad];
...
0
votes
1answer
133 views
TouchesMoved method for two view controllers
In my app there are two view controllers. I wrote touchesmoved method in both the view controllers. But even if i touch on second view controller on simulator, the first VC touches moved method is ...
0
votes
1answer
197 views
How to drag an image view after applying CGAffineTransformMakeRotation
I am developing an app, Which has feature that dragging and rotating the image view.
I have implemented to drag and rotate successfully by using below code
In touchesBegan Method
- ...
0
votes
2answers
67 views
Dragging a tableview cell that contains uibuttons
I'm trying to implement a uitableview that its rows can be dragged to right and left (and show something behind them).
The code works fine, I've implemented it using the following methods:
- ...
0
votes
0answers
130 views
UIScrollView with touchesMoved
I need to catch touchesMoved event, while moving a UIScrollView.
The fact is that I can catch perfectly touchesBegan and touchesEnded, but the touchesMoved event only gets triggered when the movement ...
0
votes
0answers
60 views
CGRect touchevent [closed]
So im sure im making it more complicated in my head than it really is but ive kinda given up.
What i want to accomplish is making and dragging a line from one point to another, with the end of that ...
0
votes
1answer
209 views
How can I stop a moving object when it hits the frame?
I'm doing a simple game which user can throw one of the bottles against the status bar on the top and break it. I'm using touchesMoved to test if a user catch a bottle(UIView) and it will be thrown ...
2
votes
0answers
390 views
TouchesMoved with UIButton xcode 4.4 iOS 5.1.1
I know this question seems to be already asked and answered but I can't resolve my issue.
I want to move the objects of my view to follow horizontal slides of a finger (going to previous or next ...
0
votes
1answer
364 views
iOS - touchesMoved called only once in subclassed UIScrollView
I am trying to drop movable UIImageViews within a subclassed UIScrollView so that I can drag them around my UIScrollView. I subclassed UISCrollView and the dropping behavior is working, but when I ...
0
votes
1answer
207 views
iOS touchesBegan issue
I have an NSArray whit 15 UIImageViews:
@interface ViewController : UIViewController{
NSArray *ArrayImages1;
NSArray *ArrayImages2;
}
in viewDidLoad:
ArrayImages1 = [[NSArray alloc] ...
0
votes
3answers
375 views
How to get object in view according to x , y ( touchesMoved )
i would like to get the UIImageView ( or whatever I have ) in the view according to the xPos and yPos using this method :
- (void) touchesMoved: (NSSet *)touches withEvent:(UIEvent *)event {
...
0
votes
1answer
101 views
Please put me on the right track with Drag Drop on IOS
I am creating a bit of a video mash up app (like imovie) and the first function I am tackling is the ability to drag a thumbnail from a video library and drop it on a time line. I was able to add the ...
0
votes
0answers
118 views
Problems with touchesMoved UIImageView
I have the below code, it works fine but, when i move the UIImageView the image moves to center of fingers point. I dont explain this perfectly, but i hope this occur because i used this ...
0
votes
0answers
145 views
iphone AVAudioPlayer plays sound effect twice
in my application I have swipe detection (left/right) method.
in that method I have an swipe counter.when counter reaches 17 I want to AVAudioPlayer
play an sound effect(game_over.mp3) once.after ...
0
votes
1answer
320 views
Detect objects, touchesmoved and UITouch
I have a UIView on where i add balls with a ID. When i touch the ball with the ID 1 i draw a dashed line follows my finger.
The problem if when i move the finger to the other balls, i don't know how ...
0
votes
3answers
1k views
detect Swipe gesture in UIWebview
I am new to iPhone developer,
I made epub reader and loaded each page of epub in my webview
What i want to is, when user does right swipe gesture 2nd time then i want to navigate to new page, i do ...
1
vote
0answers
202 views
How to detect the CAlayer that is been touched if it is in movement with an animation
I want to detect which of my CALayer is been touched with a swype. Those CALayers are moving through a CGPath and they are also rotating.
I tried with touchesMoved in my view controller checking which ...
0
votes
1answer
389 views
How can I stop views on screen from multiplying? (touchesBegan,touchesMoved,touchesEnded)
I am new to Objective C and I am trying to make a basic puzzle game. I am using multiple UIImage objects, some labels and a button. It consists in moving the pieces to its correct position. If the ...
0
votes
3answers
401 views
UIScrollView - tell the difference between setContentOffset and manual scrolling
I have a scrollview, which automatically advances every 3 seconds to the next "page" (page control also used). However, once the user touches the scrollview, I want to stop the auto-advancing.
I have ...

