sendAction$1 method

void sendAction$1(
  1. UIAction action
)

Like -sendAction:to:forEvent:, this method is called by -sendActionsForControlEvents:. You may override this method to observe or modify behavior. If you override this method, you should call super precisely once to dispatch the action, or not call super to suppress sending that action.

Implementation

void sendAction$1(UIAction action) {
  objc.checkOsVersionInternal('UIControl.sendAction:', iOS: (false, (14, 0, 0)));
  _objc_msgSend_xtuoz7(this.ref.pointer, _sel_sendAction_, action.ref.pointer);
}