touchesBegan(_:with:)
Tells the view that one or more new touches occurred.
Declaration
@MainActor @preconcurrency override dynamic func touchesBegan(_ touches: Set<UITouch>, with event: UIEvent?)Parameters
- touches:
A set of
UITouchinstances that represent the touches whose values changed. These touches all belong to the specifiedevent. For touches in a view, this set contains only one touch by default. To receive multiple touches, set the view’s Ismultipletouchenabled property totrue. - event:
The event to which the touches belong.
Discussion
See touchesBegan(_:with:) for more information.