Site icon AppTractor

Фишки Swift: двойное нажатие Apple Pencil

Добавить поддержку для новой функции двойного нажатия в Apple Pencil очень просто! Все, что вам нужно сделать, это создать UIPencilInteraction, добавить его в View и реализовать один метод.

let interaction = UIPencilInteraction()
interaction.delegate = self
view.addInteraction(interaction)

extension ViewController: UIPencilInteractionDelegate {
    func pencilInteractionDidTap(_ interaction: UIPencilInteraction) {
        // Handle pencil double-tap
    }
}
Exit mobile version