)
我可以用这段代码完美地在我的表视图中获取我的scheduledLocalNotifications
列表;
NSArray *notificationArray = [[UIApplication sharedApplication] scheduledLocalNotifications];
但唯一的问题是,我的本地通知在正确的时间触发,但在列表中显示错误的时区。
我也使用 systemTimeZone
来安排我的本地通知,就像这样;
notification.timeZone = [NSTimeZone systemTimeZone];
获取具有正确时区的scheduledLocalNotifications
列表的正确方法是什么?
提前致谢
在我已经在下午 3:30 安排通知并且当我 NSLog 它被正确安排时,它被正确安排了,它会出现在不同的时区,这就是我修复它的方式。
[localNotification.fireDate descriptionWithLocale:NSGregorianCalendar]
这将使用公历本地回火日期(或者您应该使用您在安排本地通知时使用的任何本地