I have an iOS app that includes user 'alarms' - sent to user when the the app is not in foreground. I am using UNUserNotifications and all is working well in iOS 10 and iOS 11 testing.
I would also like to reach users who are still using iOS 8 and iOS 9.
In order to send notifications to the iOS 8 users, do I need to include alternate methods that use UILocalNotifications? Or will iOS 8 respond correctly UNUserNotificatons?
If I need to include both, I can use some if's to use the right one based on OS. It just seems odd that I must include a deprecated technique.