Tagged Questions
6
votes
4answers
202 views
how do i disable touchesBegan: for multi-touches?
- (void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event
I am currently getting 1 object in
touches
when I do a tap with two fingers simultaneously (holding option key and clicking on ...
0
votes
0answers
147 views
Touch Drawing on a grid
I’m new to working with touch events. I’m trying to make it so that the user can only draw to connect certain points on a grid. Do I need to change "[touches anyObject];” and have images in the ...
0
votes
2answers
555 views
how to make multi touch enabled ios app
I have made an app and i want to make it multi touch compatible. i have tried looking around but the answers aren't specific to mine.
Here is what i do:
1) My coding:
- (void)touchesBegan:(NSSet ...
0
votes
1answer
479 views
Getting individual pixels from touch point
Is it possible to detect every pixel being touched? More specifically, when the user touches the screen, is it possible to track all the x-y coordinates of the cluster of points touched by the user? ...
0
votes
1answer
356 views
touchscreen monitor to macmini - can it do multitouch, swipe, expand, etc?
I'm trying to create a iPad-type of app (say using a Mac App), except something that works on a large touchscreen (say 32" monitor) that is attached to a MacMini.
1) Is it possible to get iPad-type ...
1
vote
0answers
191 views
event touchesForView: returns null in super view
I have a subclass of UIView called BigView that overrides touchesMoved (among other things) like so:
@implementation BigView
- (void) touchesMoved:(NSSet *)touches withEvent:(UIEvent *)event {
...
0
votes
2answers
261 views
Forward event touch with two fingers on UITextView
I need to apply a function when the user touches the screen with two fingers.
My problem that is the screen has a UITextView.
There is also active keyboard present on the screen, that's why the usual ...
0
votes
1answer
181 views
Find out how many fingers used in pan gesture--UIPanGestureRecogniser
I was wondering if there was a way to get the number of fingers that the user is panning with. I know that UIPanGestureRecogniser has the minimumNumberOfTouches and the maximumNumberOfTouches, but ...
0
votes
1answer
148 views
Multiplayer game how to use multitouch
I'm making a game where 2 people have either side of an iphone screen to move their piece. I'm having some trouble with the multitouch part, multiple touch is set to on as well. This is the current ...
1
vote
1answer
223 views
How do I keep track of two fingers independently?
I want to implement first person controls for an iOS game. Left thumb will be used for moving the character using a virtual analog stick and the right thumb for moving the characters view point ...
1
vote
2answers
68 views
iPad - Which user touched the screen? [closed]
When someone points a finger, his finger is pointing in a specific direction, right ?
ok, so when a user touches the iPad, i would like to know where that touch came from. I am not saying on the iPad. ...
0
votes
0answers
109 views
&& [[event allTouches] count] > 1
I have a UIButton whose MultipleTouchEnabled is NO. Still when I drag two fingers across it, the UIEvent I get has 2 UITouches in its allTouches property.
I want to only respond to dragging a finger ...
1
vote
4answers
760 views
Detect Two finger touch on UIIMageView
I am trying to detect two finger touch on a UIImageView object. In xib I had set multi-touch enbled.
Then I implemented the following code:
- (void)touchesBegan:(NSSet *)touches withEvent:(UIEvent ...
0
votes
2answers
143 views
Multi-touch co-ordinates problem iPhone
I am trying to find the coordinates of both touches in a multi touch. This code throws a SIGABRT on the line 'UITouch *touch2 = ...'. could anyone please tell me where I'm going wrong?
...
1
vote
3answers
282 views
Using multi-touch on iPhone & iPad
How do I get the co-ordinates of 2 touches on an iPhone? (both co-odiantes)??? This is killing me... any sample code would be great. Thanks.
0
votes
1answer
446 views
UIView Event Forwarding Infinite Loop
I've created a UIView subclass in which I intercept all touches, check for certain conditions, and, if they aren't met, forward the touches to the appropriate subview. The problem is, if the subview ...
0
votes
1answer
106 views
iOS4.2: TouchBegan does not draw more than one circle per sensed touch
quick question (which might be a no-brainer for most here) :)
My code below should draw a circle for every time touch that is recognised but although more than ones touches are sensed only one circle ...
0
votes
1answer
821 views
iOS - how to count the num of Taps inside a specific view?
I'm trying to evolve from the iOS sample "Touches" but I can't do it (I'm new to the iOS):
I'd like to count taps on each of the different UIImageViews. Currently the sample count taps no matter where ...
0
votes
1answer
658 views
exclusive Touch does not work on a UIView and several image view as subview on UIView
I have a UIView and several image Views as subview views on UIView. I need to implement this case, "When a image view is touched on the view then other image view touch event will not delivered".
I ...
1
vote
1answer
472 views
Cocoa Touch - Setting the maximum number of touches
Anyone have any idea how to prevent an app from letting more than five touches be added? Maybe someone who has a better knowledge of the touches system can explain it to me as well.
Basically, my app ...
1
vote
4answers
2k views
tracking two fingers with TouchesMoved
Suppose I have two fingers touching iPhone's screen but just one is moving.
TouchesMoved will just show one finger (event).
How do I know which of the two fingers TouchesMoved is referring too?
1
vote
1answer
241 views
Multitouch question
I want to detect, what part of screen is touched, when user shakes iPhone.
I do it in the following way:
-(void) accelerometer: (UIAccelerometer*)accelerometer didAccelerate: ...
13
votes
3answers
9k views
iPhone: Tracking/Identifying individual touches
I have a quick question regarding tracking touches on the iPhone and I seem to not be able to come to a conclusion on this, so any suggestions / ideas are greatly appreciated:
I want to be able to ...
7
votes
2answers
10k views
Way to make a UIButton continuously fire during a press-and-hold situation?
You know how Mario just keeps running to the right when you press and hold the right-button on the D-Pad? In the same manner, I want my UIButton to continuously fire its action for the duration that ...
1
vote
1answer
2k views
How the iPhone multi-touch event triggered?
I read the SDK document, but can not understand some details, need some help.
for the
-(void)touchesEnded:(NSSet*)touches withEvent:(UIEvent*)event
what's the difference between touches and ...