1
vote
1answer
143 views

Detect multi-touch gestures or drags with mouse in Mac OS X App

How can one detect when a drag is happening or a swipe on the track-pad or magic-mouse is occurring in a Mac OSX app being made in XCode. By drag I mean the user has clicked on the left or right edge ...
1
vote
2answers
136 views

ios sdk stop multitouch functionality

I have multiple buttons, if user touches 2 or more buttons and releases simultaneously, I want to give the action of just one button. How can I do that. Thanks in advance for your help..
0
votes
0answers
148 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
1answer
371 views

Dragging two images using multi touch

I am fairly new to touch event and i have a problem. I use the code above to drag two images on screen. The code works however when the the second finger touches the screen the first movement stops. ...
1
vote
1answer
829 views

IOS: zoom for a uiscrollview only with multitouch

I have this code: [scrollView setMinimumZoomScale:1.00]; [scrollView setMaximumZoomScale:2.00]; scrollView.delegate=self; - (void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event { NSSet ...
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 ...
0
votes
3answers
353 views

How to handle multitouch

I am writing an app in xcode using box2d. Right now I am using the code below. The problem is that it will only handle one touch event. How can I make my code handle all of the touch events, in this ...
0
votes
1answer
428 views

How to enable multitouch cocos2d

I want to be able to enable multitouch for cocos2d. How can I do this? I want to test each touch event like my code below. Please help. -(void) ccTouchesBegan:(NSSet *)touches withEvent:(UIEvent ...
3
votes
1answer
1k views

Recognition of swipe with two touches in UIScrollView

I have an UIScrollView with full screen size (iPad, 1024x768, landscape mode). So I need to recognize swipe with two finger in any direction over it. That's what i have (mainScroll is the property of ...
1
vote
1answer
184 views

One obj-c function works fine in C callback, another does not when called exactly the same

I have an application that relies on a C callback method to retrieve multitouch information from a macbook's trackpad. Here's the truncated version of how I communicate this data to the user: in ...
4
votes
1answer
535 views

Objective-C. How do I write to an NSObject from within a C function that doesn't see Obj-C variables?

I'm trying to get some code going that lets me display raw trackpad data from my macbook pro, like the app FingerMgmt. Unfortunately, no one seems to have the source for FingerMgmt. I did find some ...
0
votes
3answers
1k views

Enabling multi-touch in game?

I am creating a simple pong game in Xcode. I have a 2 player version and both paddles can be moved and function perfectly. The game is flawless except for the fact that you cannot move both paddles at ...
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 ...
0
votes
1answer
644 views

XCode - touchBegan - Recent Touches/New Touches

I have been using touches began to track as many as 8 touches, and each triggers an event. These touches can occur at the same time, or staggered. - (void)touchesBegan:(NSSet *)touches ...