• JPush使用时问题注意


    1集成JPush后,能收到通知,但是收不到自定义消息。

    解决方案:

    AppDelegate中加入如下代码:

    //JPush推送

        [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(networkDidReceiveMessage:) name:kJPFNetworkDidReceiveMessageNotification object:nil];

    并实现方法:

    - (void)networkDidReceiveMessage:(NSNotification *)notification {

        NSDictionary * userInfo = [notification userInfo];

        NSLog(@"userInfo:%@",userInfo);

    }

    在测试就能收到网站上发送的自定义消息了。

    2能收到网站收到的自定义消息,但是收不到后台服务器发送的自定义消息(后台往指定id发送的)

    解决问题,设置别名

    [APService setTags:nil  alias:[YRAccountTool account].ID  callbackSelector:nil  target:self];

     将用户的id设置为别名(按后台需求),就能正常收到自定义消息了

  • 相关阅读:
    呵呵

    HDU 1878 欧拉回路
    HDU 3293 sort
    HDU 2714 ISBN
    神秀作偈
    大学之道
    写给自己过去疯狂的一年(2)(写在一个特别的时候)
    这几天我的生活就是这样的
    学习和研究计划
  • 原文地址:https://www.cnblogs.com/guatiantian/p/4286797.html
Copyright © 2020-2023  润新知