search

Home  >  Q&A  >  body text

objective-c - 推送一条信息,收到多条重复推送(5条)

  1. 描述你的问题
    我在云端推送一条消息,有两台设备,iOS9.2和iOS7.3,9.2收到5条重复数据,7.3正常收到一条数据,这让我非常困惑,有大神能指点下吗。

  2. 贴上相关代码
    注册推送代码如下:

—— (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {

// 注册推送
if ([application respondsToSelector:@selector(registerUserNotificationSettings:)]) {
    UIUserNotificationSettings *settings = [UIUserNotificationSettings settingsForTypes:UIUserNotificationTypeBadge|UIUserNotificationTypeSound|UIUserNotificationTypeAlert categories:nil];
    [application registerUserNotificationSettings:settings];
    [application registerForRemoteNotifications];
}  else {
    UIRemoteNotificationType myTypes = UIRemoteNotificationTypeBadge | UIRemoteNotificationTypeAlert | UIRemoteNotificationTypeSound;
    [application registerForRemoteNotificationTypes:myTypes];
}
}
阿神阿神2758 days ago490

reply all(1)I'll reply

  • 我想大声告诉你

    我想大声告诉你2017-05-02 09:21:05

    Return to confirm if it was unsuccessful. However, the client should check the ID of the merge notification

    reply
    0
  • Cancelreply