Можно ли получить локальное уведомление, когда iPad находится в режиме управляемого доступа и заблокирован?
Я хочу использовать событие Bluetooth «сделал ввод региона», чтобы разбудить 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)