目标c如何在录制一个通知后在通知托盘上保留其他通知

时间:2016-01-04 10:28:18

标签: ios objective-c push-notification uilocalnotification

对于我的iOS应用程序, 我已收到当地通知其工作正常。

当应用程序处于后台时,这些通知会转到通知托盘,保持不变直到我看到这些通知。

但是我的问题如下,

早上6点,我收到了5个本地通知,所有这5个都在通知托盘下...但当我点击通知托盘下的所有其他4个通知(我的项目的通知)中的任何一个也被清除了。

我对它的作用没有任何线索......

我需要做什么才能将其他通知仅保留在托盘中?

我的代码

- (void)application:(UIApplication *)application didReceiveLocalNotification:(UILocalNotification *)notification
{    

  NotificationAlertView * localNotificationAlert = [[NotificationAlertView alloc] initWithTitle:APP_TITLE message:notification.alertBody delegate:self cancelButtonTitle:nil otherButtonTitles:@"OK", nil];
        localNotificationAlert.notifcation = notification ;
    localNotificationAlert.tag =ALERT_SURVEY_NOTIFICATION_TAG;
    [localNotificationAlert show];
    application.applicationIconBadgeNumber = 0;


    // Set icon badge number to zero
    application.applicationIconBadgeNumber = 0;
    notification.applicationIconBadgeNumber  =   0;
}

2 个答案:

答案 0 :(得分:1)

在通知托盘中,如果您点按任何通知,则会自动从托盘中清除同一应用的其他通知。 这是iOS的默认行为,您无法更改它。

答案 1 :(得分:1)

application.applicationIconBadgeNumber = 0;

有副作用。你应该正确设置它。