Когда я планирую несколько UILocalNotification (60), мое приложение перестает отвечать на запросы в течение определенного периода времени.Кроме того, вся система iPhone заморожена.
Вот мой код:
// Configure the notification properties
UILocalNotification *localNotif = [[UILocalNotification alloc] init];
localNotif.timeZone = tempTimeZone;
localNotif.fireDate = [dict objectForKey:@"fireDateKey"];
localNotif.alertBody = [dict objectForKey:@"alertBodyKey"];
localNotif.alertAction = @"View";
localNotif.soundName = UILocalNotificationDefaultSoundName; // Set the sound for notification
localNotif.applicationIconBadgeNumber += 1; // Increase the aplication badge number with 1
localNotif.userInfo = [NSDictionary dictionaryWithObjectsAndKeys:[dict objectForKey:@"ID"], ojectIDKey, nil];
// Schedule the notification
[application scheduleLocalNotification:localNotif];
[localNotif release];
Есть предложения?