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 have a UIScrollView which contains a UIButton and a gradient button, which is a UIControl subclass. The gradient-button draws differently according to whether the user has tapped on it (indicating highlight).

The button behaves regularly inside the scroll-view, while the gradient-button does not: whenever I tap the button, it immediately redraws to indicate it has been highlighted. The gradient-button, however, does not respond immediately. Only if I hold the tap for half a second or so, does it redraw.

It should be noted that outside of a scroll-view, the gradient-button behaves as expected.

It seems to be related to the fact that a UIScrollView waits some time before forwarding the events, to decide if it should scroll instead.

My question is - what does UIButton do differently? how can I mimic this behavior in the gradient-button? Or maybe is it special treatment on the side of UIScrollView?

EDIT: The problem appears to be drawing-related. The touch events get called properly, but instead of two calls to drawRect: I only get one. Forcing the runloop to process events, as well as calling [CATransacation flush], causes two calls to drawRect: to be made, but there's no visible change.

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

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

Browse other questions tagged or ask your own question.