如何使用Iphone应用程序和设备的其他信息获取设备令牌?

时间:2009-10-03 07:04:14

标签: iphone device token

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

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

是否可以使用设备令牌获取设备其他信息?

设备令牌的格式是什么?

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

谢谢,

Mishal Shah

2 个答案:

答案 0 :(得分:14)

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

// Delegation methods 
- (void)application:(UIApplication *)application didRegisterForRemoteNotificationsWithDeviceToken:(NSData *)deviceToken {
    NSLog(@"didRegisterForRemoteNotificationsWithDeviceToken: %@", deviceToken);
} 

答案 1 :(得分: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];