I wanted to allow a method call to be called if the finger was dragged externally to the bounds of the control. I thought UIControlEventTouchDragEnter would do this, but that doesn't seem to be the case. Does anyone know if there is a way to trigger an action based on a touch sliding into a control?
This is what I tried, but did not receive a call to my -fingerSlidIn:
[aButton addTarget: self action: @selector (fingerSlidIn: withEvent :) forControlEvents: UIControlEventTouchDragEnter];
Thank!
source
share