在我的iPhone应用程序,我想设备标识使用APN。 如何获得,使用的代码?
阿洛斯我想了解有关设备用户,它的版本和其他信息等信息。 如何获得,使用码?
是否有可能得到使用设备令牌设备等信息?
什么是设备标识的格式?
请给通过代码或任何链接或其他任何方式,这将不胜感激解决方案。
谢谢,
米沙勒沙阿
在我的iPhone应用程序,我想设备标识使用APN。 如何获得,使用的代码?
阿洛斯我想了解有关设备用户,它的版本和其他信息等信息。 如何获得,使用码?
是否有可能得到使用设备令牌设备等信息?
什么是设备标识的格式?
请给通过代码或任何链接或其他任何方式,这将不胜感激解决方案。
谢谢,
米沙勒沙阿
在这里你如何获得有关设备的信息---
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];
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
[[UIApplication sharedApplication] registerForRemoteNotificationTypes:UIRemoteNotificationTypeBadge|UIRemoteNotificationTypeAlert ];
}
// Delegation methods
- (void)application:(UIApplication *)application didRegisterForRemoteNotificationsWithDeviceToken:(NSData *)deviceToken {
NSLog(@"didRegisterForRemoteNotificationsWithDeviceToken: %@", deviceToken);
}