You will have to import UserNotifications
@import UserNotifications;
2.Request authorization for localNotification
let center = UNUserNotificationCenter.current()
center.requestAuthorization([.alert, .sound]) { (granted, error) in
// Enable or disable features based on authorizat...