我为iOS创建了一个自定义日历,我正在尝试使用徽章编号来显示当天的编号,但是过了一天后数字没有变化,我的意思是他们应该更新热闹这里是我的代码:我需要像天气实时应用程序这样的应用程序,此应用程序不会发送任何推送通知!
int a = [DateComponents showDay];
[UIApplication sharedApplication].applicationIconBadgeNumber = a ;
答案 0 :(得分:31)
目前在iOS中执行此操作并不容易。您可以关闭,但不能每天可靠地更新徽章,除非用户偶尔打开应用。
您需要使用UILocalNotification
。您可以创建和安排"沉默"通知更新应用程序徽章而不提醒用户或播放如下警告声音:
UILocalNotification* notification = [[UILocalNotification alloc] init];
notification.fireDate = [NSDate dateWithTimeIntervalSinceNow:seconds];
notification.timeZone = [NSTimeZone systemTimeZone];
notification.alertBody = nil;
notification.soundName = nil;
notification.applicationIconBadgeNumber = dayTomorrow;
[[UIApplication sharedApplication] scheduleLocalNotification:notification];
[notification release];
其中dayTomorrow
是明天的一天的int。并且seconds
是一段时间间隔 - 这可能类似于间隔到午夜。发送此通知后,用户将不会收到任何警报或声音,但应将应用徽章更新为新值。您可以每天使用repeatInterval
属性重复此通知,但问题是第二天您需要将dayTomorrow
更改为其他值,并且在那之后的第二天。但重复警报在applicationIconBadgeNumber
中始终具有相同的值。
所以我认为实现任何接近你想要的东西的唯一方法是安排多个本地通知 - 你可以提前安排多达64个 - 每天一个,每天一个,并且每天一个' s值设置为applicationIconBadgeNumber
。这些必须是非重复的,因此请确保将repeatInterval
设置为nil(或者不设置它,因为nil是默认值)。假设所有这些通知都是由iOS可靠地传递的,您可以静默更新徽章编号,而不会在最长64天内打扰用户。之后,徽章将停止更新... ,除非您设法在此期间安排更多通知 - 即用户打开应用时。您可以尝试执行的操作是在应用启动时取消所有现有的预定通知:
[[UIApplication sharedApplication] cancelAllLocalNotifications];
然后提前64天循环,安排每天午夜的通知,以及applicationIconBadgeNumber
属性的正确日期。只要用户每64天至少打开一次您的应用,您就会使徽章图标保持最新状态。如果您设想您的应用用户经常打开应用(例如,每天多次),那么优化可能是在取消之前检查已安排的现有通知的数量并创建64个新通知,如下所示:
if ([[[UIApplication sharedApplication] scheduledLocalNotifications] count] < 10)
{
//there are 10 or fewer days' worth of notifications scheduled, so create and
//schedule more here, up to 64 in total.
}
还有几点需要注意:
application:didReceiveLocalNotification:
,但徽章图标不会更新。因此,为了满足这种情况,我建议每次启动应用程序时将徽章图标更新到当天(或从背景返回到前台)。修改强>
这是一个代码段,用于取消任何现有的本地通知,并在将来的午夜安排64,并将当月的正确日期指定为徽章编号:
[[UIApplication sharedApplication] cancelAllLocalNotifications];
NSCalendar* calendar = [[NSCalendar alloc] initWithCalendarIdentifier:NSGregorianCalendar];
NSDateComponents* components = [calendar components:(NSYearCalendarUnit | NSMonthCalendarUnit | NSDayCalendarUnit) fromDate:[NSDate date]];
[components setHour:0];
[components setMinute:0];
[components setSecond:0];
NSDate* midnightToday = [calendar dateFromComponents:components];
const int SECONDS_PER_DAY = 60 * 60 * 24;
for (int i = 1; i <= 64; i++)
{
NSDate* futureDate = [midnightToday dateByAddingTimeInterval:i * SECONDS_PER_DAY];
NSDateComponents* components = [calendar components:NSDayCalendarUnit fromDate:futureDate];
UILocalNotification* notification = [[UILocalNotification alloc] init];
notification.fireDate = futureDate;
notification.timeZone = [NSTimeZone systemTimeZone];
notification.alertBody = nil;
notification.soundName = nil;
notification.applicationIconBadgeNumber = components.day;
//NSLog(@"futureDate: %@", [NSDateFormatter localizedStringFromDate:futureDate dateStyle:NSDateFormatterMediumStyle timeStyle:NSDateFormatterMediumStyle]);
//NSLog(@"notification: %@", notification);
[[UIApplication sharedApplication] scheduleLocalNotification:notification];
[notification release];
}
[calendar release];
这里发生的是:
[NSDate date]
,然后将其分解为我们要保留的组件(年,月,日),然后设置时间组件(小时,分钟,秒)午夜。这给了我们midnightToday
。 midnightToday
并添加每天的秒数乘以未来的天数我们想要约会。我们使用此日期来安排本地通知。NSDateComponents
将未来日期分解为我们感兴趣的组件 - 在这种情况下,我们只指定NSDayCalendarUnit
。然后,我们可以将applicationIconBadgeNumber
设置为components.day
请注意,这可能仅适用于使用Gregorian(西式)日历的用户 - 根据您的市场情况,您可能需要考虑世界各地使用的其他日历类型并支持这些日历类型。
答案 1 :(得分:3)
你应该可以使用UILocalNotification
来做到这一点我不确定您是否可以将其设置为每天自动重复一次,但您可以通过垃圾邮件通知来模仿。
答案 2 :(得分:2)
您如何以及在何处调用此方法?如果你设置一个计时器每x秒运行一次这个代码,它将在下一次计时器启动时更新。