3

在我的 iphone 应用程序中,我想要使用 APN 的设备令牌。如何使用代码获得它?

我还想要有关设备用户、其版本和其他信息的其他信息。如何使用 Code 获得它?

是否可以使用 Device Token 获取设备的其他信息?

设备令牌的格式是什么?

请通过代码或任何链接或任何其他方式提供解决方案,我们将不胜感激。

谢谢,

米沙尔沙阿

4

2 回答 2

15
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
    [[UIApplication sharedApplication] registerForRemoteNotificationTypes:UIRemoteNotificationTypeBadge|UIRemoteNotificationTypeAlert ];
}

// Delegation methods 
- (void)application:(UIApplication *)application didRegisterForRemoteNotificationsWithDeviceToken:(NSData *)deviceToken {
    NSLog(@"didRegisterForRemoteNotificationsWithDeviceToken: %@", deviceToken);
} 
于 2009-10-03T12:28:34.827 回答
7

在这里您如何获取有关设备的信息---

NSString*  deviceName= [[UIDevice currentDevice] uniqueIdentifier];
NSString*  localizedModel=[[UIDevice currentDevice] localizedModel];
NSString*  systemVersion=[[UIDevice currentDevice] systemVersion];
NSString*  systemName=[[UIDevice currentDevice] systemName];
NSString*  model=[[UIDevice currentDevice] model];
于 2009-11-07T11:17:33.527 回答