UIPencilHoverPose
An object that describes the hover pose of Apple Pencil during an interaction like double tap or squeeze.
Declaration
@MainActor class UIPencilHoverPoseOverview
Use the hover pose of Apple Pencil to support more complex interactions in response to a double tap or squeeze. Information about the hover pose — such as azimuth, altitude, and hover distance — is available when a person holds a supported model of Apple Pencil close to the screen during a double tap or squeeze.
The following code example shows how to use the location of a hover pose to present a contextual palette near the tip of Apple Pencil.
func pencilInteraction(_ interaction: UIPencilInteraction,
didReceiveSqueeze squeeze: UIPencilInteraction.Squeeze) {
let preferredAction = UIPencilInteraction.preferredSqueezeAction
if preferredAction == .showContextualPalette, squeeze.phase == .ended {
if let anchorPoint = squeeze.hoverPose?.location {
presentContextualPalette(atLocation: anchorPoint)
}
}
}