removeAction method

void removeAction(
  1. UIAction action, {
  2. required UIControlEvents forControlEvents,
})

Removes the action from the set of passed control events.

Implementation

void removeAction(UIAction action, {required UIControlEvents forControlEvents}) {
  objc.checkOsVersionInternal('UIControl.removeAction:forControlEvents:', iOS: (false, (14, 0, 0)));
  _objc_msgSend_10736wn(
    this.ref.pointer,
    _sel_removeAction_forControlEvents_,
    action.ref.pointer,
    forControlEvents.value,
  );
}