iOS 5 里无法取得 UUID 的一个解决方案

IOS5 里面uniqueIdentifier这个接口没有了,但是我们又想要一个唯一的设备识别码怎么办?
下面这个方案是获取网卡mac地址然后做md5生成的,可以替代原来的uniqueIdentifier。

在你的工程中加入  NSString+MD5Addition.h .m   UIDevice+IdentifierAddition.h .m
调用方法: [[UIDevice currentDevice] uniqueDeviceIdentifier]
          or    [[UIDevice currentDevice] uniqueGlobalDeviceIdentifier]

具体看DEMO
下载地址:https://github.com/gekitz/UIDevice-with-UniqueIdentifier-for-iOS-5

你可能感兴趣的:(uuid)