美文网首页
极光推送接收自定义消息

极光推送接收自定义消息

作者: 溪小希 | 来源:发表于2019-12-23 12:03 被阅读0次

    自定义消息只接收不展示 

    //添加监听者

        NSNotificationCenter *defaultCenter = [NSNotificationCenter defaultCenter];

        [defaultCenter addObserver:self selector:@selector(networkDidReceiveMessage:)

                              name:kJPFNetworkDidReceiveMessageNotification object:nil];

    //在APP打开的情况下,接收自定义的方法

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

        //处理通知的方法

    NSDictionary *userInfo = [notification userInfo];

    }

    相关文章

      网友评论

          本文标题:极光推送接收自定义消息

          本文链接:https://www.haomeiwen.com/subject/nvjznctx.html