如何在iOS7中以编程方式获取设备UDID? [英] How to get Device UDID in programmatically in iOS7?

查看:66
本文介绍了如何在iOS7中以编程方式获取设备UDID?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

如何在iOS7中以编程方式获取设备UDID.[[UIDevice currentDevice] uniqueIdentifier]我使用了此代码,iOS7已弃用.如何获取设备的UDID.删除应用程序并重新安装时,UDID字符串发生变化,这意味着UDID变得与众不同.

How to get device UDID in programatically in iOS7.[[UIDevice currentDevice] uniqueIdentifier] I was used this code This is deprecated iOS7. how to get the device UDID. The UDID String changing when I delete the app and the reinstall means the UDID was getting different one.

推荐答案

对所有版本都有效100%

It's work 100% to all the version

苹果推荐的其他最佳选择 ASIdentifierManager类参考

other best option recommend by apple use ASIdentifierManager Class Reference

ios7-app-backward-compatible-with-ios5 -regarding-unique-identifier

此链接告诉您如何处理和使用自定义框架

this link tell you how to handle and use custom framework

uidevice-uniqueidentifier-property-is不推荐使用的内容

iOS 9

NSUUID *uuid = [[NSUUID alloc]initWithUUIDString:@"20B0DDE7-6087-4607-842A-E97C72E4D522"];
NSLog(@"%@",uuid);
NSLog(@"%@",[uuid UUIDString]);

它仅支持ios 6.0及更高版本

it support only ios 6.0 and above

使用[[[UIDevice currentDevice] identifierForVendor] UUIDString];

NSUUID *deviceId;
#if TARGET_IPHONE_SIMULATOR
deviceId = [NSUUID initWithUUIDString:@"UUID-STRING-VALUE"];
#else
deviceId = [UIDevice currentDevice].identifierForVendor;
#endif

要像使用iOS 5一样

ios 5 to use like

 if ([[UIDevice currentDevice] respondsToSelector:@selector(identifierForVendor)]) {
    // This is will run if it is iOS6
    return [[[UIDevice currentDevice] identifierForVendor] UUIDString];
} else {
   // This is will run before iOS6 and you can use openUDID or other 
   // method to generate an identifier
}

这篇关于如何在iOS7中以编程方式获取设备UDID?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆