The touchesbegan tag has no wiki summary.
1
vote
1answer
40 views
TouchesBegan not triggered in UIView as subview of UITableViewCell
I'm creating a custom dropdown menu inside a cell of a UITableView adding this menu as a subview of the cell content view.
When I click on the menu inside the cell I enlarge the view to show all the ...
0
votes
1answer
46 views
Is there a method called in between touchesBegan and touchesEnded?
I asked this question on the Stack Exchange Game Development Site about how to combine the tap and long hold gesture recognizers, and received the following answer:
The way to deal with this is to ...
0
votes
1answer
67 views
touchesBegan in custom UITableViewCell, touchesEnded in UIView
I am trying to mimic a drag n drop of an image from a UITableView to a UIView. Both the UITableView and UIView are on the same view, side by side.
My approach:
is to fire the touchesBegan event ...
4
votes
6answers
136 views
Nested UIScrollViews and event routing
I have 2 scroll views, both of which are supposed to scroll vertically. The outer scroll view (red) contains a search bar and the inner scroll view (blue). The inner scroll view is supposed to scroll ...
0
votes
1answer
26 views
Two views with multitouch
I should manage two different views inside my main view; I want detect the exact number of finger inside my views, that is if I have four fingers inside "first view" I want a var that say me a value = ...
2
votes
2answers
50 views
IOS: correct number of touch on screen
In my app I need to catch the exact number of finger on the screen, I try two ways but I have 2 different problem.
First way:
- (void) touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event{
...
0
votes
0answers
57 views
UIButton Undo touchesBegan
I want to establish a Undo button, for that I have created an image (_Mini) equal to the main image to paint.
Then I created a method to replace undo the last stroke, the previous image .... the ...
3
votes
1answer
71 views
Why are my iOS events firing in the wrong order?
I'm working an iPhone app called RealBaseball. If you're familiar with RealSoccer, it's pretty similar. It will allow you to play baseball with your iPhone with friends around the world.
When you ...
0
votes
1answer
57 views
Cocos2d - Allow touches to be used by multiple classes (sneakyjoystick)
Evening all,
I'll start this question in the time honoured tradition by saying that I've had a good old search on SO and also in the wider world but I'm not quite getting my head around this...
I've ...
0
votes
2answers
72 views
iOS define touchable areas of an object, confine touches to subviews of self
I have a subclassed UIView I'll call customView. I would like enable touches so users can manipulate subviews, which have gesture recognizers and other controls, but the view itself I would like to ...
0
votes
0answers
72 views
Touch event difference between iOS 6.1 simulator and iOS 5.0 simulator under presentViewController:?
I have a program that simply respond to touch event.
It works well on iPad 6.1 simulator.
However, when I tried it with 5.0 simulator, the system does not respond to touch action (i.e. mouse action)
...
0
votes
0answers
41 views
UIScrollView: Pickup Scroll Mid-Swipe
I'm attempting to add a scrollview to the view and have its scroll initiated as soon as it hits with the finger already down on the screen. As of now I am clicking a button that makes the scrollview ...
0
votes
2answers
73 views
how to access array element within touchEnded in objective c
I am having a very strange behaviour about the TouchesEnded Method
I am using this syntax to access the array element
int cal=((b * (b-a-1))+4);
printf("cal is %d",cal);
c=[file_contents ...
0
votes
1answer
63 views
touchmoved not working after displaying uiimageviews from NSMutable array
I am developing a project in which I have created a UIImageView dynamically using an NSMutableArray
The code for this is:
for (int i = 0; i < index ; i++) {
image_name= [NSString ...
2
votes
1answer
155 views
How can I draw one circle around each touch location on a device?
New programmer here trying to take things step by step. I am trying to find a way to draw a circle around each currently touched location on a device. Two fingers on the screen, one circle under each ...
1
vote
3answers
662 views
touchesBegan, touchesEnded, touchesMoved for moving UIView
I need to drag my UIView object. I use this code, but it does not work
float oldX, oldY;
BOOL dragging;
- (void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event {
UITouch *touch = ...
0
votes
1answer
59 views
Handling touches for a subview that's larger than its parent view
Let's say I make a UIImageView that contains another UIImageView. But the SubView is larger than the first view.
The green subview is significantly larger than it's superview, the black square. ...
0
votes
2answers
110 views
pressGestureRecognizer and touchesBegan
I have the following problem.
I am using a UILongPressGestureRecognizer to put a UIView into a "toggle mode". If the UIView is in "toggle mode" the user is able to drag the UIView around the screen. ...
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
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. ...
2
votes
2answers
243 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
1answer
172 views
Tracking all touches in for a designated UIViewController subclass
I want to track all user touches within a designated UIViewController subclass, e.g. MyViewController.
As this UIViewController may contain UIKit-Elements, such as UIButtons, etc. I thought of lying ...
0
votes
2answers
67 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
1answer
168 views
UIGestureRecognizer or touchesBegan not responding
I have a normal app. Yes this will not work anywhere in it. If I place this in a ViewController, it will not work, if I place this in a UIView subclass, likewise, it refuses to work. What am I doing ...
0
votes
2answers
25 views
Need to enable my screen to respond to a UITouch only after the user is prompted with a message in my iOS app
Dear fellow iOS developers:
I need to enable my screen to respond to a user's touch, but only after they are prompted by a message that appears via an MBProgressHUD. I realize that I need to ...
1
vote
1answer
38 views
How to save number of taps on image?
I am trying to make an app for children on how to save money. As a visual, at the beginning, I have an empty jar (UIIMage) that, when tapped, the image changes to a jar filled with coins (to simulate ...
0
votes
1answer
137 views
Touch and drag a UIButton around, but don't trigger it when releasing the finger
I'm trying to allow some UIButton instances on one of my views to be touched and dragged around the screen (eventually with momentum, but that's for later!). I have this working in a very simple form, ...
0
votes
1answer
87 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
1answer
29 views
Is there a way to get more precise timing data for UIView touchesBegan?
I'm writing an app in which it would be useful to have very precise data about when a user taps a UIView.
The the UIEvent passed to touchesBegan: only has timing data in seconds, which is not nearly ...
1
vote
1answer
169 views
xcode touchesBegan multiple tasks
I am using touchesBegan and touchesMoved to move a UIImageView to wherever you touch on the screen. It moves a marker (the UIimageView I moved), draws a shape in the UIImageview and reads off a graph.
...
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
826 views
How to get current touch point and previous toch point in UIPanGestureRecognizer method
i am new to iOS, i am using UIPanGestureRecognizer in my project. in which i have a requirement to get current touch point and previous touch point when i am dragging the view. i am struggling to get ...
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 ...
1
vote
1answer
165 views
How can an UIImageView can be touched while it is animating to alpha 0?
Somebody help!
Here is what I want to implement :
While an UIImageView is becoming alpha 0 (hidden)
it can be touched
so that its alpha becomes one (unhidden).
But UIImageView is not touched ...
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
0answers
73 views
UIGestureRecogniser with Touches events
I have a view with touches(began, moved, ended, cancelled) events implemented in it. I want to recognise doubletap at a subview within that my view.
I tried using UIGestureRecogniser but it interups ...
0
votes
0answers
177 views
touchesBegan not being called in view controller pushed on top of tabbarcontroller in navigationcontroller
Disclaimer: This is an enterprise app and I am NOT required to follow Apple's guidelines (HIG or otherwise). That doesn't mean it's not biting me though.
What I have is a Navigation Controller with ...
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 ...
0
votes
1answer
70 views
Animations are preventing touchesBegan
I have this code:
- (void)touchesBegan:(NSSet*)touches withEvent:(UIEvent*)event
{
MainGame *newview = [[MainGame alloc] initWithNibName:@"MainGame" bundle:nil];
newview.modalTransitionStyle ...
2
votes
1answer
61 views
How do I determine what the valid range is for CGPoint on a device when using locationInView of touch events?
I know the iPhone has 480 x 320 and iPad is 1024 x 768 but I don't know how to determine that programmatically. I'd appreciate any help I can get.
0
votes
1answer
243 views
Multitouch Cocos2d TouchesBegan Individual vs Sets of touches
I am designing an app and we're having some issues with multitouch tapping and slightly delayed multitouch tapping (which results in 2 individual calls to TouchesBegan).
The problem we have come ...
0
votes
0answers
115 views
Touch event with UIImagePickerController
I've a UIButton overlaying a standard UIImagePickerController.
I need to move this button it around the screen (iPad 5.1).
touchesBegan and touchesMoved event doesn't respond to touch.
Any ...
0
votes
2answers
188 views
Buttons get stuck on highlighted
I have just started working on a project and I already have a few problems and errors. I was wondering if you guys could help me figure out where the bug is.
Quick overview: I have two files: ...
1
vote
1answer
129 views
Using IBAction Instead of touchesBegan:
Is there any real difference between setting an IBAction to handle your touch event vs. using touchesBegan: touchesMoved, etc? What considerations would cause one to be preferred over the other?
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 ...
2
votes
1answer
904 views
UIGestureRecognizers vs touchesBegan/touchesMoved/touchesEnded (accuracy)
I was printing the list of points I get using this two methods of touch tracking.
The gesture recognizers are easier to use, but if you compare the points you get with the touchesBegan procedure, ...
0
votes
1answer
78 views
How to add only one image by touch
Working on adding images to a view by touch. So far my code allows me to add the same image I select as many times as I want when I touch the screen. I want to be able to just add an image one at a ...
0
votes
2answers
330 views
My touchesBegan wont trigger
Hi I have a problem I haven't been able to figure for a couple of days. I have a touchesBegan method that I want to use to tell when someone is tapping a UIImageView so it can move a different ...
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] ...



