I've been having difficulty in determining when a UIPickerView has started scrolling.
Having tried various methods proposed in different answers, it appears that none of them work in iOS7.
I have tried using the UITapGestureRecognizer but the PickerView will not handle it, however Swipe and Long Press gestures are working fine.
The following is working but I really want to get a TapGesture to work instead
pickerView.AddGestureRecognizer(new UILongPressGestureRecognizer(lp =>
{
PickerValueChanged = false;
})
{
MinimumPressDuration = 0.1,
CancelsTouchesInView = false,
NumberOfTouchesRequired = 1
});
Any ideas would be greatly appreciated