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