[Solved] How to create reminders that don’t have to be shown in the Apple’s Reminders app

Just for the record, what I was looking for was User Notifications. Here is a complete example. User Notifications func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?) -> Bool { UNUserNotificationCenter.current().requestAuthorization(options:[.badge, .alert, .sound]) { (granted, error) in if granted{ print(“User gave permissions for local notifications”) }else{ print(“User did NOT give permissions for local notifications”) } … Read more