How to Set repeat interval as well as fire date in UNNotificationRequest
问题 Previously I am using UILocalNotification for reminder purpose in my application. But as above API is deprecated in iOS 10.0 now need to use UserNotifications Framework's UNNotificationRequest . Using UILocalNotification i was able to set fire date as well as repeat interval as below: UILocalNotification *localNotification = [[UILocalNotification alloc] init]; NSDate *tomorrow = [NSDate dateWithTimeInterval:(24*60*60) sinceDate:[NSDate date]]; localNotification.fireDate = tomorrow; if