objective-c - I would like to ask which method to intercept if I want to monitor the Tap click event of UIView?
我想大声告诉你2017-05-02 09:25:02
0
1
571
When intercepting UIButton events, I know that the sendAction:to:forEvent: method will be executed after the button is clicked, so I can hook this method to do other things. So which method should I intercept for the UIView's Tap event?
The tap event added by the following code
Can be intercepted with shouldReceiveTouch