在我的iphone应用程序中,我希望设备令牌使用APN。 如何使用代码获得它?
Alos我想要有关设备用户,其版本和其他信息的其他信息。 如何使用Code获得它?
是否可以使用设备令牌获取设备其他信息?
设备令牌的格式是什么?
请通过代码或任何链接或任何其他方式提供解决方案,我们将不胜感激。
谢谢,
Mishal Shah
答案 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];