ximmyxiao
ximmyxiao

Reputation: 2801

UIButton 's touchUpInside will trigger even when the touches already out the bounds of button?

I found the UIButton 's touchUpInside will be triggered even when my finger is moving out of the bounds of button slightly. And if I want the touchUpInside not be called when the finger moves out of button . How to do it

Upvotes: 0

Views: 60

Answers (1)

matt
matt

Reputation: 534885

You can't change this behavior. You would have to write your own button-like view.

Upvotes: 1

Related Questions