Re: iOS: Differentiating between 1 or 2 finger touches

2011-07-12 Thread Nathan Sims
On Jul 12, 2011, at 8:33 PM, Roland King wrote: > On Jul 13, 2011, at 11:27, Nathan Sims wrote: > >> If I put one finger down on the UIView, I get a -touchesBegan:withEvent: >> event. If I keep that finger down and put another down also I don't seem to >> get any event at all. Is there a way to

Re: iOS: Differentiating between 1 or 2 finger touches

2011-07-12 Thread Roland King
Is the view multi touch enabled. Are you sure by the way you can't use a gesture recognizer for what you're doing? If you can, they make life a whole lot simpler. On Jul 13, 2011, at 11:27, Nathan Sims wrote: > On Jul 12, 2011, at 5:28 PM, Greg Parker wrote: >> On Jul 12, 2011, at 4:49 PM, Na

Re: iOS: Differentiating between 1 or 2 finger touches

2011-07-12 Thread Nathan Sims
On Jul 12, 2011, at 5:28 PM, Greg Parker wrote: > On Jul 12, 2011, at 4:49 PM, Nathan Sims wrote: >> On Jul 12, 2011, at 4:46 PM, Fritz Anderson wrote: >>> On 12 Jul 2011, at 6:30 PM, Nathan Sims wrote: I have a, iOS 4.3.3 UIView that is touch-enabled. When my -touchesBegan:withEvent: me

Re: iOS: Differentiating between 1 or 2 finger touches

2011-07-12 Thread Greg Parker
On Jul 12, 2011, at 4:49 PM, Nathan Sims wrote: > On Jul 12, 2011, at 4:46 PM, Fritz Anderson wrote: >> On 12 Jul 2011, at 6:30 PM, Nathan Sims wrote: >>> I have a, iOS 4.3.3 UIView that is touch-enabled. When my >>> -touchesBegan:withEvent: method gets called, I can't figure out how to >>> diffe

Re: iOS: Differentiating between 1 or 2 finger touches

2011-07-12 Thread Nathan Sims
On Jul 12, 2011, at 4:46 PM, Fritz Anderson wrote: > On 12 Jul 2011, at 6:30 PM, Nathan Sims wrote: > >> I have a, iOS 4.3.3 UIView that is touch-enabled. When my >> -touchesBegan:withEvent: method gets called, I can't figure out how to >> differentiate when the user touched the screen with on

Re: iOS: Differentiating between 1 or 2 finger touches

2011-07-12 Thread Fritz Anderson
On 12 Jul 2011, at 6:30 PM, Nathan Sims wrote: > I have a, iOS 4.3.3 UIView that is touch-enabled. When my > -touchesBegan:withEvent: method gets called, I can't figure out how to > differentiate when the user touched the screen with one finger or with two. > Either way, I receive this: > > t