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