Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm sure there are a lot of reasons why someone would like to have more than one button accept touches at the same time. However, most of us only need one button to be pressed at one time (for navigation, for something to be presented modally, to present a popover, a view, etc.).

So, why would Apple set the exclusiveTouch property of UIButton to NO by default?

share|improve this question

4 Answers

up vote 2 down vote accepted

I was just reading release notes for iOS 5 and from this version the exclusiveTouch will be set to YES by default. So just keep in mind that it will change with the new version of iOS.

share|improve this answer
3  
under NDA technically :) – Jesse Naugher Jun 28 '11 at 16:31
I checked the docs, where does it say exclusiveTouch is set to YES by default? – pixelfreak Feb 27 at 8:11
This is false. From the iOS 5.1 docs: "The default value of this property is NO." – Doug McBride Mar 20 at 20:16

the UIView property exclusiveTouch means the view (button) is the ONLY thing in that window that can be interacted with if it is set to YES. As stated in the docs: Setting this property to YES causes the receiver to block the delivery of touch events to other views in the same window. The default value of this property is NO.

Therefore, it is the common behavior that you might have multiple buttons or interaction controls/views in a window and want exclusiveTouch set to NO.

If you set this property to YES for any UIView subclass in a window, you can not interact with anything else in the window for as long as that property is set to YES. That means if you initialize a button with exclusiveTouch = YES, but also have a table view or another button or a scroll view or any other view that is based on interaction, it will not respond to any touches.

share|improve this answer
1  
Suppose I have 2 buttons as subviews of the same view. If I don't set exclusiveTouch to NO on both buttons and then later if the user presses them both at the same time, both will call their action methods. And if their action methods conflict for some reason (say both of them push a different view controller to the navigation stack), the application crashes, hence my question. – Leuguimerius Jun 28 '11 at 14:27

exclusiveTouch simply means that any view underneath your UIButton will not receive the touch events.

It's set to no by default because you typically want the view underneath to receive these events. For example, if you have a UIButton on top of a scroll view and the user wants to scroll. You want the scrollView to scroll even if they begin with their finger on the UIButton.

share|improve this answer
I don't think this is accurate, @Jesse got it right. Setting this property to YES causes the receiver to block the delivery of touch events to other views in the same window. – pixelfreak Feb 27 at 8:10

Exactly that I want to implement. I have a UIScrollView and a lot of UIButtons. But when I begin to scroll with my finger on the button, the button shows its pressed state and the scrollview stocks. How to deal with?

share|improve this answer

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.