iOS umeng 获取deviceToken的方法
程序员文章站
2023-12-19 16:34:46
appdelegate.m 中
- (void)application:(uiapplication *)application didregisterforre...
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 umeng 获取devicetoken的方法就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持。