当前位置:主页 > 移动开发 > iOS代码 >

iOS umeng 获取deviceToken的方法

时间:2022-08-20 08:09:21 | 栏目:iOS代码 | 点击:

AppDelegate.m 中

- (void)application:(UIApplication *)application didRegisterForRemoteNotificationsWithDeviceToken:(NSData *)deviceToken{
  [UMessage registerDeviceToken:deviceToken];
  NSString *tokenStr = [[[[deviceToken description] stringByReplacingOccurrencesOfString: @"<" withString: @""]
              stringByReplacingOccurrencesOfString: @">" withString: @""]
             stringByReplacingOccurrencesOfString: @" " withString: @""];
  self.device_token = tokenStr;
  NSLog(@"%@",tokenStr);
}

您可能感兴趣的文章:

相关文章