touchesShouldBegin method

bool touchesShouldBegin(
  1. NSSet touches, {
  2. UIEvent? withEvent,
  3. required UIView inContentView,
})

touchesShouldBegin:withEvent:inContentView:

Implementation

bool touchesShouldBegin(objc.NSSet touches, {UIEvent? withEvent, required UIView inContentView}) {
  objc.checkOsVersionInternal('UIScrollView.touchesShouldBegin:withEvent:inContentView:', iOS: (false, (2, 0, 0)));
  return _objc_msgSend_gtxojt(
    this.ref.pointer,
    _sel_touchesShouldBegin_withEvent_inContentView_,
    touches.ref.pointer,
    withEvent?.ref.pointer ?? ffi.nullptr,
    inContentView.ref.pointer,
  );
}