欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  移动技术

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的方法就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持。

上一篇:

下一篇: