delegate property
UIApplicationDelegate?
get
delegate
delegate
Implementation
UIApplicationDelegate? get delegate {
objc.checkOsVersionInternal('UIApplication.delegate', iOS: (false, (2, 0, 0)));
final _ret = _objc_msgSend_151sglz(this.ref.pointer, _sel_delegate);
return _ret.address == 0 ? null : UIApplicationDelegate.castFromPointer(_ret, retain: true, release: true);
}
set
delegate
(UIApplicationDelegate? value)
setDelegate:
Implementation
set delegate(UIApplicationDelegate? value) {
objc.checkOsVersionInternal('UIApplication.setDelegate:', iOS: (false, (2, 0, 0)));
_objc_msgSend_xtuoz7(this.ref.pointer, _sel_setDelegate_, value?.ref.pointer ?? ffi.nullptr);
}