如何使用iPhone应用程序和有关设备的其他信息,以获取设备令牌?(how to get Devic

2019-08-17 05:25发布

在我的iPhone应用程序,我想设备标识使用APN。 如何获得,使用的代码?

阿洛斯我想了解有关设备用户,它的版本和其他信息等信息。 如何获得,使用码?

是否有可能得到使用设备令牌设备等信息?

什么是设备标识的格式?

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

谢谢,

米沙勒沙阿

Answer 1:

在这里你如何获得有关设备的信息---

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];


Answer 2:

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

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


文章来源: how to get Device Token using Iphone Application and other info about the device?