Apple Pencil 2 Double Tap Gesture

Using Apple Pencil's Double Tap Gesture within your app, which is not a drawing app, allowed?


For example, trigger an action within the app?


After reading Apple's Human Interface Guidelines, it still seems to be somewhat ambiguous.


Thanks in advance.

  • Was you app approved at the end? If so, which one is it?

Add a Comment

Accepted Reply

The HIGs are saying you're ok, as long as that action doesn't risk appropriating a normally assigned function.


Docs say this about pencil taps:


Handle the Double Tap

In your implementation of this method, decide whether to perform the action selected by the user in the Settings app, or perform an alternative behavior that’s suitable for your app. When possible, perform the user’s preferred action.


Taking this step allows you to provide a consistent user experience across apps that support Pencil interactions.

-=-


Point is...do your best to maintain UI consistency from the user's POV.

Replies

The HIGs are saying you're ok, as long as that action doesn't risk appropriating a normally assigned function.


Docs say this about pencil taps:


Handle the Double Tap

In your implementation of this method, decide whether to perform the action selected by the user in the Settings app, or perform an alternative behavior that’s suitable for your app. When possible, perform the user’s preferred action.


Taking this step allows you to provide a consistent user experience across apps that support Pencil interactions.

-=-


Point is...do your best to maintain UI consistency from the user's POV.

Nice

Something interesting:

I implemented a function to double-tap gesture of Apple Pencil 2 and submitted it.


Currently, the app is 'In Review' for 4 days and counting. Recently all my apps got approved within hours (sometimes less than that). Interesting.....

>implemented a function to double-tap gesture


Which was it?