增加iPhone应用程序上的应用程序徽章编号

时间:2012-08-01 13:59:56

标签: java iphone push-notification

我使用Java pns推送我的应用, 这是我如何使用它:

    public static PushedNotifications Push(String token,String message,String Sound,int badge) throws CommunicationException, KeystoreException{    
         String key=PushUtil.class.getResource("cert.p12").getPath();
         PushedNotifications pn= Push.combined(message, badge, Sound, key, "Pass", true, token);
         System.out.println("pn: "+pn);
         return pn;         
    }

有没有办法发送通知,增加徽章而不是 只是设置它?

1 个答案:

答案 0 :(得分:2)

不是我知道的。徽章编号只是的替代品。如果它意味着反映某种状态,你应该在服务器中维护该状态,并始终推送绝对值。