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); }
上一篇:IOS UI学习教程之区分NSBundle和NSURL(读取文件、写入文件)
栏 目:iOS代码
下一篇:没有了
本文标题:iOS umeng 获取deviceToken的方法
本文地址:http://www.codeinn.net/misctech/211348.html