removeActionForIdentifier method
void
removeActionForIdentifier(
- NSString actionIdentifier, {
- required UIControlEvents forControlEvents,
Removes the action with the provided identifier from the set of passed control events.
Implementation
void removeActionForIdentifier(objc.NSString actionIdentifier, {required UIControlEvents forControlEvents}) {
objc.checkOsVersionInternal('UIControl.removeActionForIdentifier:forControlEvents:', iOS: (false, (14, 0, 0)));
_objc_msgSend_10736wn(
this.ref.pointer,
_sel_removeActionForIdentifier_forControlEvents_,
actionIdentifier.ref.pointer,
forControlEvents.value,
);
}