美文网首页
极光推送添加设备别名

极光推送添加设备别名

作者: 大神风格化X | 来源:发表于2018-02-24 10:38 被阅读1643次

    最新的极光推送中首先是要初始化APPkey,然后再设置对应的设备名

    //生产

    //    [JPUSHService setupWithOption:launchOptions appKey:@"你的key"

    //                          channel:@"Publish channel"

    //                apsForProduction:1

     //            advertisingIdentifier:advertisingId];

        //生产2

        [JPUSHService setupWithOption:launchOptions appKey:@"你的key"

                              channel:@"Publish channel"

                     apsForProduction:1

                advertisingIdentifier:advertisingId];

    设置配置名:

    - (void)setUpJpush{

        NSString*str =@"";

        if([defaultsobjectForKey:CUSTOMER_ID]) {

            str = [defaultsobjectForKey:CUSTOMER_ID];

        }

        NSSet *tags = [NSSet setWithObject:str];

        dispatch_after(dispatch_time(DISPATCH_TIME_NOW, (int64_t)(1.0f * NSEC_PER_SEC)), dispatch_get_main_queue(), ^{

            [JPUSHServicesetTags:tagscompletion:^(NSIntegeriResCode,NSSet*iTags,NSIntegerseq) {

            }seq:0];

        });

    }

    相关文章

      网友评论

          本文标题:极光推送添加设备别名

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