scheduledLocalNotifications property
NSArray?
get
scheduledLocalNotifications
scheduledLocalNotifications
Implementation
objc.NSArray? get scheduledLocalNotifications {
objc.checkOsVersionInternal('UIApplication.scheduledLocalNotifications', iOS: (false, (4, 0, 0)));
final $ret = _objc_msgSend_151sglz(object$.ref.pointer, _sel_scheduledLocalNotifications);
return $ret.address == 0 ? null : objc.NSArray.fromPointer($ret, retain: true, release: true);
}
set
scheduledLocalNotifications
(NSArray? value)
setScheduledLocalNotifications:
Implementation
set scheduledLocalNotifications(objc.NSArray? value) {
objc.checkOsVersionInternal('UIApplication.setScheduledLocalNotifications:', iOS: (false, (4, 0, 0)));
_objc_msgSend_xtuoz7(object$.ref.pointer, _sel_setScheduledLocalNotifications_, value?.ref.pointer ?? ffi.nullptr);
}