对于我的 iOS 应用程序, 我已收到本地通知,它工作正常。
当应用程序处于后台时,这些通知会转到通知托盘,一直留在那里直到我看到这些通知。
但这里我有以下问题,
在早上 6 点,我收到了 5 个本地通知,所有这 5 个都停留在通知托盘下...但是 当我点击这 5 个通知中的任何一个时,通知托盘下的所有其他 4 个通知(我的项目的通知)也被清除了。
我不知道它的作用......
我需要做什么才能将其他通知仅保留在托盘中?
我的代码在
- (void)applicationUIApplication *)application didReceiveLocalNotificationUILocalNotification *)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;
}
application.applicationIconBadgeNumber = 0;
有副作用。你应该正确设置它。
关于ios - objective-c 如何在点击一个通知后将其他通知保留在通知托盘上,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34589067/
欢迎光临 OStack程序员社区-中国程序员成长平台 (https://ostack.cn/) | Powered by Discuz! X3.4 |