我在Appstore中有我的应用程序,它已实施Urban Airship Push通知。
我只需要使用Urban Airship Push向我的设备发送一些测试消息。 我该怎么做?
谢谢!
答案 0 :(得分:0)
你可以这样:
- (void)application:(UIApplication *)application didRegisterForRemoteNotificationsWithDeviceToken:(NSData *)deviceToken
{
NSString *tokenStr = [[deviceToken description] substringWithRange:NSMakeRange(1, 71)];
NSString *result=[tokenStr stringByReplacingOccurrencesOfString:@" " withString:@""];
NSLog(@"deviceToken result:%@",result);
}