Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

In iOS is there anyway to prevent a UIView containing multiple buttons (siblings) from being simultaneously from being touched? For instance, two non-overlapping buttons that are side by side can be tapped at the same time with two touches.

share|improve this question

2 Answers

up vote 32 down vote accepted

Set UIView.exclusiveTouch.

share|improve this answer
Awesome! Why I didn't think of that for buttons I do not know?! – pryomoax Aug 13 '10 at 20:47
1  
Perfect ! that was like hidden treasure , never knew of this property, thanks a lot. – RVN Jul 14 '11 at 12:48
please note to set it on each "UIButton"! NOT the the UIView those buttons are in :) (Set in on all subviews of that UIView would do) like this -> [self.controlView.subviews makeObjectsPerformSelector:@selector(setExclusiveTouch:) withObject:[NSNumber numberWithBool:YES]]; – Hlung Apr 27 '12 at 17:28
@Hlung: That won't necessarily work; -setExclusiveTouch: takes a BOOL, not a NSNumber (it might work if the number happens to be interpreted as YES, but that's not guaranteed). I call it UIView.exclusiveTouch because that's the class that the property is defined in (a UIButton is a UIView). – tc. Apr 30 '12 at 17:35
@tc. Yes, it is guaranteed. As far as I know, when I want to send a BOOL in makeObjectsPerformSelector:withObject:, sending any object with non-zero address will be interpreted as YES (yeah, [NSNumber numberWithBool:NO] will mean YES). And therefore, sending nil will be NO. In my example, I just want to make it clear that it is a YES. At least it's my style because I don't know a more proper way of doing it :) – Hlung May 2 '12 at 8:15
show 1 more comment

on view and all subViews

[view setMultipleTouchEnabled:NO];

EDIT: add code so other buttons ignore touch events

One way to do this is to send resignFirstResponder to other views in buttonPressed:

- (void)buttonPressed:(id)sender
{
    // Assumes that the view only contains a bunch of buttons that you want to disable 
    // while you handle the first touch
    [[self view] subviews] makeObjectsPerformSelector:@selector(resignFirstRespoder)];

    // Do some stuff
    ....
    ....


    // Re-enable all the buttons
    [[self view] subviews] makeObjectsPerformSelector:@selector(becomeFirstRespoder)];

 }
share|improve this answer
Nope, that was the first thing I tried, setting all views to single-touch only. The problem is that the view are siblings so they get their own touch events. I want to prevent single multiple touches on multiple views. – pryomoax Aug 13 '10 at 17:27

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.