touchesBegan method

void touchesBegan(
  1. NSSet touches, {
  2. UIEvent? withEvent,
})

touchesBegan:withEvent:

Implementation

void touchesBegan(objc.NSSet touches, {UIEvent? withEvent}) {
  objc.checkOsVersionInternal('UIResponder.touchesBegan:withEvent:', iOS: (false, (2, 0, 0)));
  _objc_msgSend_pfv6jd(
    this.ref.pointer,
    _sel_touchesBegan_withEvent_,
    touches.ref.pointer,
    withEvent?.ref.pointer ?? ffi.nullptr,
  );
}