toolTip property

NSString? get toolTip

Assigning a value to this property causes the tool tip to be displayed for the view. Setting the property to nil cancels the display of the tool tip for the view.

Implementation

objc.NSString? get toolTip {
  objc.checkOsVersionInternal('UIControl.toolTip', iOS: (false, (15, 0, 0)));
  final _ret = _objc_msgSend_151sglz(this.ref.pointer, _sel_toolTip);
  return _ret.address == 0 ? null : objc.NSString.castFromPointer(_ret, retain: true, release: true);
}
set toolTip (NSString? value)

Assigning a value to this property causes the tool tip to be displayed for the view. Setting the property to nil cancels the display of the tool tip for the view.

Implementation

set toolTip(objc.NSString? value) {
  objc.checkOsVersionInternal('UIControl.setToolTip:', iOS: (false, (15, 0, 0)));
  _objc_msgSend_xtuoz7(this.ref.pointer, _sel_setToolTip_, value?.ref.pointer ?? ffi.nullptr);
}