当iPad处于引导访问模式并被锁定时,是否可以获得本地通知?
我想使用蓝牙“进入区域”事件在用户靠近设备时唤醒iPad。
我已经尝试发送本地通知。如果没有引导访问模式,我会收到通知。请注意,我使用的是iOS 9.3,因此使用的是UILocalNotification
,而不是UNUserNotificationCenter
。
let notification = UILocalNotification()
notification.fireDate = NSDate(timeIntervalSinceNow: 15) as Date
notification.alertBody = "Test"
notification.alertAction = "Test" // used in UIAlert button or 'slide to unlock...' slider in place of unlock
notification.soundName = UILocalNotificationDefaultSoundName
notification.userInfo = ["testKey": "testValue"] // Array of custom parameters
notification.applicationIconBadgeNumber = 1
UIApplication.shared.scheduleLocalNotification(notification)