delegate property
UITabBarControllerDelegate?
get
delegate
delegate
Implementation
UITabBarControllerDelegate? get delegate {
objc.checkOsVersionInternal('UITabBarController.delegate', iOS: (false, (2, 0, 0)));
final $ret = _objc_msgSend_151sglz(object$.ref.pointer, _sel_delegate);
return $ret.address == 0 ? null : UITabBarControllerDelegate.fromPointer($ret, retain: true, release: true);
}
set
delegate
(UITabBarControllerDelegate? value)
setDelegate:
Implementation
set delegate(UITabBarControllerDelegate? value) {
objc.checkOsVersionInternal('UITabBarController.setDelegate:', iOS: (false, (2, 0, 0)));
_objc_msgSend_xtuoz7(object$.ref.pointer, _sel_setDelegate_, value?.ref.pointer ?? ffi.nullptr);
}