customView property
UIView?
get
customView
customView
Implementation
UIView? get customView {
objc.checkOsVersionInternal('UIBarButtonItem.customView', iOS: (false, (2, 0, 0)));
final _ret = _objc_msgSend_151sglz(this.ref.pointer, _sel_customView);
return _ret.address == 0 ? null : UIView.castFromPointer(_ret, retain: true, release: true);
}
set
customView
(UIView? value)
setCustomView:
Implementation
set customView(UIView? value) {
objc.checkOsVersionInternal('UIBarButtonItem.setCustomView:', iOS: (false, (2, 0, 0)));
_objc_msgSend_xtuoz7(this.ref.pointer, _sel_setCustomView_, value?.ref.pointer ?? ffi.nullptr);
}