I'm using SceneKit to render a 3D model on an iPad Pro. My requirement is that I'd like to perform different interactions when using the Apple Pencil.
Is there a way to distinguish between a finger touch and an Apple Pencil touch?
I tried overriding the touchesBegan
function and filtering the UITouch
in the Set
to ignore the ones with type pencil
, but that doesn't seem to do anything...
EDIT: I'm more interested in handling these 2 different types of touches (i.e. when the there's a finger touch event, I want to do some action A. If it's pencil, I want to do action B). Which methods do I even override to achieve this segregation?
Easy way of checking is a UITouch object will have additional information that comes from a stylus (Such as Apple Pencil). Check if this information exists on the object and if it does the UITouch object came from a stylus.
For more in-depth information I have linked below an input guide for the Apple Pencil from the developer documentation.
Can you provide code however as the type on UITouch should still be reported correctly?
https://developer.apple.com/documentation/uikit/pencil_interactions/handling_input_from_apple_pencil