Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What is the touches canceled event, and how is it different from touches ended

I just don't understand what apple means by the touches canceled event and how is it called.

like image 597
Jab Avatar asked Feb 28 '23 19:02

Jab


1 Answers

I'm not really sure Tim addressed your question so I'll take a shot at it.

touchesCanceled is called when the OS needs to interrupt the user. It gives you a chance to clean up whatever you've been doing in touchesBegan and touchesMoved.

More specifically, it is called when the user puts the phone to his/her face turning the screen off, or if a notification like incoming call or new text message occurs.

like image 118
David Kanarek Avatar answered Mar 02 '23 08:03

David Kanarek