Just playing with the new mouse/trackpad support and trying to detect both primary and seconday mouse button clicks.
I can detect them (primary OR secondary clicks) by setting the buttonMaskRequired on a UITapGestureRecognizer to EITHER UIEventButtonMaskPrimary or UIEventButtonMaskSecondary
BUT if I attempt to recognise both (buttonMaskRequired = UIEventButtonMaskPrimary | UIEventButtonMaskSecondary) then the gesture recogniser doesn't fire (for mouse clicks.)
Anyone know if this is an 'oversight' or I'm doing something wrong?
Thanks