D'abord, il a dit que
'UIApplicationDidEnterBackground' a été renommé en 'UIApplication.didEnterBackgroundNotification'
et quand je l'ai pointé, il a dit
Le type 'Notification.Name' (alias 'NSNotification.Name') n'a pas de membre 'UIApplication'
func listenForBackgroundNotification() {
observer = NotificationCenter.default.addObserver(forName: Notification.Name.UIApplicationDidEnterBackground, object: nil, queue: OperationQueue.main) { [weak self] _ in
if let weakSelf = self {
if weakSelf.presentedViewController != nil {
weakSelf.dismiss(animated: true, completion: nil)
}
weakSelf.descriptionTextView.resignFirstResponder()
}
}
}