本文地址:http://blog.csdn.net/zhaoyabei/article/details/46682765
想要追踪、统计用户,自然离不开用户唯一标识符,这是每个公司都面临的问题。在历史上唯一标识符很多,如UDID、MAC地址、OpenUDID等,不再一一介绍他们是怎么挂掉的,现在好用的只剩下了idfa、idfv、UUID+keyChain。
idfa(Advertising Identifier):可以理解为广告id,apple公司提供的用于追踪用户的广告标识符。
缺点:用户可通过设置-隐私-广告-还原广告标识符 还原,之后会得新的到标识符;
要求iOS>=6.0。
使用:
#import <AdSupport/AdSupport.h> NSString *idfa= [[[ASIdentifierManager sharedManager] advertisingIdentifier] UUIDString];</span>
idfv (identifierForVendor):apple提供给Vendor的唯一标识符,Vendor代表了应用开发商,实际使用时,一个Vendor是CFBundleIdentifier(反转DNS格式)的前两部分。例如,com.baidu.tieba 和 com.baidu.image 得到的idfv是相同的,因为它们的CFBundleIdentifier
前两部分是相同的。
缺点:把同一个开发商的所有应用卸载后,再次安装取到的idfv会不同。假设手机上装有公司的两款app:贴吧、
要求:iOS>=6.0
使用:
<span style="font-size:18px;"> NSString *idfv = [[[UIDevice currentDevice] identifierForVendor] UUIDString];</span>
UUID(Universally Unique Identifier):通用唯一识别码,每次生成均不一样,所以第一次生成后需要保存到钥匙串,这样即使应用删除再重装仍然可以从钥匙串得到它。
使用:
UUID生成方法很多种,这里只写出一种。生成一个UUID:
-(NSString*) uuid { CFUUIDRef puuid = CFUUIDCreate( nil ); CFStringRef uuidString = CFUUIDCreateString( nil, puuid ); NSString * result = (NSString *)CFBridgingRelease(CFStringCreateCopy( NULL, uuidString)); CFRelease(puuid); CFRelease(uuidString); return result; }
将UUID储存在钥匙串,这里用到了一个第三方的工具 SFHFKeychainUtils,github地址
[SFHFKeychainUtils storeUsername:@"UDID" andPassword:[self uuid] forServiceName:@"ZYB" updateExisting:1 error:nil];
从钥匙串取出UUID:
[SFHFKeychainUtils getPasswordForUsername:@"UDID" andServiceName:@"ZYB" error:nil]
注意,如果没有存储就直接取出会crash。
版权声明:本文为博主原创文章,未经博主允许不得转载。