I read in the UIResponder
class reference:
There are two general kinds of events: touch events and motion events.
The primary event-handling methods for touches are touchesBegan:withEvent:, touchesMoved:withEvent:, touchesEnded:withEvent:, and touchesCancelled:withEvent: ...
but another article, the Event Handling Guide for iOS says:
The first responder is the first view in a window to receive the following type of events and messages: Motion events, Remote-control events, Action messages, Editing-menu messages
So I was confused that the second note says the responder handles only four events -- touch events were not included -- whereas the first note says the responder handles touch event.
Please let me know what I am misunderstanding.