i'm developing tvos application audio player, , need support fast-forward , rewind using same gestures apple music , other audio apps. specifically, fast-forward, user presses , holds on right side of remote control's touch surface, , rewind, user presses , holds on left side.
i'm creating 2 uilongpressgesturerecognizer
instances, 1 fast-forward , 1 rewind, , adding them view controller's top-level view. fast-forward gesture recognizer, i'm setting allowedpresstypes
@[uipresstyperightarrow]
, , rewind recognizer, i'm setting allowedpresstypes
@[uipresstypeleftarrow]
. these gestures have no effect.
can provide sample code implements these gestures properly?
Comments
Post a Comment