iOS umeng 获取deviceToken的方法
AppDelegate.m中
-(void)application:(UIApplication*)applicationdidRegisterForRemoteNotificationsWithDeviceToken:(NSData*)deviceToken{ [UMessageregisterDeviceToken:deviceToken]; NSString*tokenStr=[[[[deviceTokendescription]stringByReplacingOccurrencesOfString:@"<"withString:@""] stringByReplacingOccurrencesOfString:@">"withString:@""] stringByReplacingOccurrencesOfString:@""withString:@""]; self.device_token=tokenStr; NSLog(@"%@",tokenStr); }
以上这篇iOSumeng获取deviceToken的方法就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持毛票票。