如何从我的 iPhone 设备获取设备令牌?
Mike
问问题
18947 次
3 回答
14
此方法将在调试模式下在控制台中打印 deviceToken,如果您想查看设备令牌,您也可以在 UIAlert 中看到。
- (void)application:(UIApplication *)application didRegisterForRemoteNotificationsWithDeviceToken:(NSData *)deviceToken {
NSLog(@"APN device token: %@", deviceToken);
NSString *deviceTokenString = [NSString stringWithFormat:@"%@",deviceToken];
UIAlertView *deviceTokenAlert = [[UIAlertView alloc] initWithTitle:@"Device Token"
message:deviceTokenString
delegate:self
cancelButtonTitle:@"OK"
otherButtonTitles:nil];
}
于 2011-09-30T18:31:06.737 回答
7
如果你已经实现了这个方法
- (void)application:(UIApplication *)application didRegisterForRemoteNotificationsWithDeviceToken:(NSData *)deviceToken {
}
对于推送通知,您将获得设备令牌(此方法实际上是您需要在应用程序中实现的两种方法之一)
这可能会发现它很有用http://urbanairship.com/docs/push.html
您还可以查看Iphone 应用程序中的推送通知
希望这个对你有帮助。
于 2011-02-02T09:18:27.580 回答
6
此方法将在控制台中显示您的设备令牌。
- (void)application:(UIApplication *)app didRegisterForRemoteNotificationsWithDeviceToken:(NSData *)deviceToken {
NSString *str = [NSString
stringWithFormat:@"%@",deviceToken];
NSString *newString = [str stringByReplacingOccurrencesOfString:@" " withString:@""];
newString = [newString stringByReplacingOccurrencesOfString:@"<" withString:@""];
newString = [newString stringByReplacingOccurrencesOfString:@">" withString:@""];
[[NSUserDefaults standardUserDefaults] setObject:newString forKey:@"deviceToken"];
NSLog(@"Your deviceToken ---> %@",newString);
}
于 2012-06-11T10:50:30.737 回答