isContextMenuInteractionEnabled property
bool
get
isContextMenuInteractionEnabled
Specifies if the context menu interaction is enabled. NO by default.
Implementation
bool get isContextMenuInteractionEnabled {
objc.checkOsVersionInternal('UIControl.isContextMenuInteractionEnabled', iOS: (false, (14, 0, 0)));
return _objc_msgSend_91o635(object$.ref.pointer, _sel_isContextMenuInteractionEnabled);
}
set
isContextMenuInteractionEnabled
(bool value)
Specifies if the context menu interaction is enabled. NO by default.
Implementation
set isContextMenuInteractionEnabled(bool value) {
objc.checkOsVersionInternal('UIControl.setContextMenuInteractionEnabled:', iOS: (false, (14, 0, 0)));
_objc_msgSend_1s56lr9(object$.ref.pointer, _sel_setContextMenuInteractionEnabled_, value);
}