-1

当应用程序在后台进行推送通知时,我的应用程序徽章计数不会增加。计数仅在第一个推送通知时增加 1,并且始终保持徽章计数为 1,如果我收到更多则 1 个通知也仅徽章计数保持 1。下面是我的代码

- (void)application:(UIApplication *)application 
       didReceiveRemoteNotification:(NSDictionary *)userInfo {

    NSString *message = nil;
    id alert = [userInfo objectForKey:@"aps"];
    if ([alert isKindOfClass:[NSString class]]) {
        message = alert;
    }    
    else if ([alert isKindOfClass:[NSDictionary class]]) {
        message = [alert objectForKey:@"alert"];
    }
    if (alert) {
        UIAlertView *alertView = [[UIAlertView alloc] initWithTitle:@"xyz"
                                                        message:message
                                                       delegate:self
                                              cancelButtonTitle:@"OK"
                                              otherButtonTitles:@"Cancel", nil];
        alertView.tag=2525;
        [alertView show];
     }
}


-(void)alertView:(UIAlertView *)alertView 
     clickedButtonAtIndex:(NSInteger)buttonIndex  {

   if(alertView.tag==2525)  {
      [UIApplication sharedApplication].applicationIconBadgeNumber =
      [UIApplication sharedApplication].applicationIconBadgeNumber-1;
   }
}
4

2 回答 2

2

您必须从服务器端执行此操作。就我而言,我是通过 php 和 mysql 完成的。这是我的数据库 在此处输入图像描述

我添加了一个字段 badgecount,每次使用此代码将推送发送到设备时,我都会增加徽章计数

        $query = "SELECT badgecount FROM pushnotifications WHERE device_token = '{$device_token}'";
        $query = $this->db->query($query);
        $row = $query->row_array();
        $updatequery = "update pushnotifications set badgecount=badgecount+1 WHERE device_token ='{$device_token}'";
        $updatequery = $this->db->query($updatequery);
        $device = $device_token;
        $payload['aps'] = array('alert' => $pushmessage, 'badge' =>$row["badgecount"]+1, 'sound' => 'default');
        $payload = json_encode($payload); 
        ...

我还制作了另一个 api 来制作 badgcount 0 ,它在

- (void) application:(UIApplication *)application didReceiveRemoteNotification:(NSDictionary *)userInfo

因此,当看到通知时,它在服务器中再次为零。

于 2014-05-30T06:45:27.207 回答
1

你说你的有效载荷是:

aps = { alert = "third testing"; badge = 1; sound = "sound.caf"; };

由于您总是发送1徽章计数,这就是为您的应用显示的徽章计数。徽章计数不是递增的。如果您想查看大于 1 的徽章计数,您的服务器应将大于 1 的值放入您的有效负载中。

您的服务器应跟踪每个设备应接收的徽章计数。应用程序本身不能保证接收所有推送通知,因此您不能依赖其逻辑来更新徽章计数。

于 2013-09-24T14:31:42.243 回答