Я использую UserNotifications сделать простое уведомление для теста, я написал код в AppDelegate, как показано ниже, когда уведомление запускается в фоновом режиме, оно отображает сообщение на экране, но не запускает код и печати (...) и a.get ()):
func userNotificationCenter(_ center: UNUserNotificationCenter, didReceive response: UNNotificationResponse, withCompletionHandler completionHandler: @escaping () -> Void) {
print("run in didReceive")
let a = ViewController()
a.get()
}
func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?) -> Bool {
UNUserNotificationCenter.current().requestAuthorization(options: [.alert,.sound,.badge, .carPlay], completionHandler: { (granted, error) in
if granted {
print("granted")
}else{
print("not granted")
}
})
UNUserNotificationCenter.current().delegate = self
return true
}
Я просто хочу запускать функцию "viewcontroller" только тогда, когда приложение работает в фоновом режиме ...