2

現在、アプリケーションでローカル通知を使用していますが、何かおかしいと感じています。

このような通知を設定してスケジュールします。

UILocalNotification *localNotif = [[UILocalNotification alloc] init];
if (localNotif == nil) {
    return;
}
NSDate *now = [[NSDate alloc] init];
now = [now dateByAddingTimeInterval:dayToFinish * 24 * 60 * 60];
NSDateComponents *components = [[NSCalendar currentCalendar] components:NSHourCalendarUnit fromDate:now];

components = [[NSCalendar currentCalendar] components:NSYearCalendarUnit | NSMonthCalendarUnit | NSDayCalendarUnit fromDate:now];
int month = [components month];
int day = [components day];
int year = [components year];

NSCalendar *calendar = [NSCalendar autoupdatingCurrentCalendar];
NSDateComponents *dateComps = [[NSDateComponents alloc] init];
[dateComps setYear:year];
[dateComps setMonth:month];
[dateComps setDay:day];
[dateComps setHour:18];
[dateComps setMinute:15];
[dateComps setSecond:0];

//There are a lot to set up the fire date, you could ignore it.
NSDate *fireDate = [calendar dateFromComponents:dateComps];

localNotif.fireDate = fireDate;
localNotif.timeZone = [NSTimeZone defaultTimeZone];
localNotif.alertBody = [NSString stringWithFormat:@"Test message %@", self.name];
localNotif.applicationIconBadgeNumber = 1;

NSDictionary *infoDict = [NSDictionary dictionaryWithObject:self.name forKey:@"ListRecordName"];
localNotif.userInfo = infoDict;
[[UIApplication sharedApplication] scheduleLocalNotification:localNotif];

コードのこの部分を数回呼び出して、いくつかのローカル通知をスケジュールすると、奇妙なことが起こります。

  1. 通知センターに複数のエントリがありますが、バッジ番号は 1 のままです。
  2. 通知の 1 つをクリックすると、他のすべての通知が消えます。ただし、cancelAllLocalNotifications メソッドは使用しませんでした。

どうすればこの問題を解決できますか、ありがとう。

4

1 に答える 1

8

アプリがバックグラウンドにある間、ローカル通知でバッジ番号を動的に更新することはできません。プッシュ通知を使用する必要があります。

于 2012-12-10T05:12:24.683 に答える