UPGRADE YOUR SKILLS: Learn advanced Swift and SwiftUI on Hacking with Swift+! >>

Input with pencil allowed, input with finger deactivated

Forums > SwiftUI

I have programmed a SwiftUI app to draw paths on the iPad with the Apple Pencil. I use the following structure for this:

...

DrawingView(pencilPoints: $pencilPointArray)

.gesture(DragGesture(minimumDistance: 0)

.onChanged({ value in

code

})

.onEnded({ _ in

code

})

...

struct DrawingView: UIViewRepresentable {

@Binding var pencilPoints: [CGPoint]

code

}

How can I prevent input with the finger? Only input with the Pencil should be allowed.

Many thanks for help in advance Roonster

2      

DrawingView(pencilPoints: $pencilPointArray)
    .gesture(DragGesture(minimumDistance: 0)
    .onChanged({ value in
        // code
    })

    .onEnded({ _ in
        // code
    })

...

struct DrawingView: UIViewRepresentable {
    @Binding var pencilPoints: [CGPoint]
        // code
}

You should look up StrokeGestureRecognizer and the relevant Apple documentation around that, so that you can distinguish between a finger and the Apple Pencil - try this link to Apple Developer.

3      

BUILD THE ULTIMATE PORTFOLIO APP Most Swift tutorials help you solve one specific problem, but in my Ultimate Portfolio App series I show you how to get all the best practices into a single app: architecture, testing, performance, accessibility, localization, project organization, and so much more, all while building a SwiftUI app that works on iOS, macOS and watchOS.

Get it on Hacking with Swift+

Sponsor Hacking with Swift and reach the world's largest Swift community!

Reply to this topic…

You need to create an account or log in to reply.

All interactions here are governed by our code of conduct.

 
Unknown user

You are not logged in

Log in or create account
 

Link copied to your pasteboard.