Планирование нескольких локальных уведомлений заморозило мое приложение - PullRequest
0 голосов
/ 27 января 2012

Когда я планирую несколько 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];

Есть предложения?

Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...