how to implement multiple local notification not a single notification for swift 3
i have use the single notification , and this is my code: this is for register the local notification>>> func registerLocal() { let center = UNUserNotificationCenter.current() center.requestAuthorization(options: [.alert, .badge, .sound]) { (granted, error) in if granted { print("Yay!") } else { print("D'oh") } } } and this function to schedule the local notification>>> func scheduleLocal() { registerCategories() let center = UNUserNotificationCenter.current() // not required, but useful for testing! center.removeAllPendingNotificationRequests() let content = UNMutableNotificationContent()