我知道在iOS 5.0中不推荐使用UDID。在我疯狂并更新所有具有[UIDevice currentDevice] .uniqueIdentifier调用的应用程序之前,我想知道iPhone 4S是否会报告UDID。
如果它有UDID,基本上它会省去我立即更新我的应用程序的麻烦。如果它没有UDID并且在调用UDID之后基本上终止了应用程序,那么我真的需要立即更新我的应用程序。
提前致谢。
答案 0 :(得分:4)
我建议从uniqueIdentifier
更改为this open source library(实际上是2个简单类别)。它利用设备的MAC地址和应用程序包标识符在您的应用程序中生成可用作UDID替换的唯一ID。
请注意,与UDID不同,此数字对于每个应用都会有所不同。
您只需导入包含的NSString
和UIDevice
类别,然后致电:
#import "UIDevice+IdentifierAddition.h"
#import "NSString+MD5Addition.h"
NSString *iosFiveUDID = [[UIDevice currentDevice] uniqueDeviceIdentifier]
为了获取生成的设备标识符。
你可以在Github上找到它:
https://github.com/gekitz/UIDevice-with-UniqueIdentifier-for-iOS-5
继承代码(只是.m文件 - 检查github项目的标题):
的UIDevice + IdentifierAddition.m
#import "UIDevice+IdentifierAddition.h"
#import "NSString+MD5Addition.h"
#include <sys/socket.h> // Per msqr
#include <sys/sysctl.h>
#include <net/if.h>
#include <net/if_dl.h>
@interface UIDevice(Private)
- (NSString *) macaddress;
@end
@implementation UIDevice (IdentifierAddition)
////////////////////////////////////////////////////////////////////////////////
#pragma mark -
#pragma mark Private Methods
// Return the local MAC addy
// Courtesy of FreeBSD hackers email list
// Accidentally munged during previous update. Fixed thanks to erica sadun & mlamb.
- (NSString *) macaddress{
int mib[6];
size_t len;
char *buf;
unsigned char *ptr;
struct if_msghdr *ifm;
struct sockaddr_dl *sdl;
mib[0] = CTL_NET;
mib[1] = AF_ROUTE;
mib[2] = 0;
mib[3] = AF_LINK;
mib[4] = NET_RT_IFLIST;
if ((mib[5] = if_nametoindex("en0")) == 0) {
printf("Error: if_nametoindex error\n");
return NULL;
}
if (sysctl(mib, 6, NULL, &len, NULL, 0) < 0) {
printf("Error: sysctl, take 1\n");
return NULL;
}
if ((buf = malloc(len)) == NULL) {
printf("Could not allocate memory. error!\n");
return NULL;
}
if (sysctl(mib, 6, buf, &len, NULL, 0) < 0) {
printf("Error: sysctl, take 2");
return NULL;
}
ifm = (struct if_msghdr *)buf;
sdl = (struct sockaddr_dl *)(ifm + 1);
ptr = (unsigned char *)LLADDR(sdl);
NSString *outstring = [NSString stringWithFormat:@"%02X:%02X:%02X:%02X:%02X:%02X",
*ptr, *(ptr+1), *(ptr+2), *(ptr+3), *(ptr+4), *(ptr+5)];
free(buf);
return outstring;
}
////////////////////////////////////////////////////////////////////////////////
#pragma mark -
#pragma mark Public Methods
- (NSString *) uniqueDeviceIdentifier{
NSString *macaddress = [[UIDevice currentDevice] macaddress];
NSString *bundleIdentifier = [[NSBundle mainBundle] bundleIdentifier];
NSString *stringToHash = [NSString stringWithFormat:@"%@%@",macaddress,bundleIdentifier];
NSString *uniqueIdentifier = [stringToHash stringFromMD5];
return uniqueIdentifier;
}
- (NSString *) uniqueGlobalDeviceIdentifier{
NSString *macaddress = [[UIDevice currentDevice] macaddress];
NSString *uniqueIdentifier = [macaddress stringFromMD5];
return uniqueIdentifier;
}
@end
的NSString + MD5Addition.m:
#import "NSString+MD5Addition.h"
#import <CommonCrypto/CommonDigest.h>
@implementation NSString(MD5Addition)
- (NSString *) stringFromMD5{
if(self == nil || [self length] == 0)
return nil;
const char *value = [self UTF8String];
unsigned char outputBuffer[CC_MD5_DIGEST_LENGTH];
CC_MD5(value, strlen(value), outputBuffer);
NSMutableString *outputString = [[NSMutableString alloc] initWithCapacity:CC_MD5_DIGEST_LENGTH * 2];
for(NSInteger count = 0; count < CC_MD5_DIGEST_LENGTH; count++){
[outputString appendFormat:@"%02x",outputBuffer[count]];
}
return [outputString autorelease];
}
@end
答案 1 :(得分:3)
-[UIDevice uniqueIdentifier]
将继续在iOS 5中运行,但您应该转向另一种机制。
答案 2 :(得分:3)
它肯定仍然有效 - 我们今天看到我们的系统从iPhone 4S用户登录了大量购买,其设备提供了有效的UDID。 (通过uniqueIdentifier
获得)但Apple可能会在iOS 6中删除它,因此值得开始探索解决方法。
答案 3 :(得分:0)
尽管[[UIDevice currentDevice] uniqueDeviceIdentifier]仍然有效,但由于安全原因,Apple已开始拒绝访问UDID设备的应用程序,因此最好找到另一种UDID替代方案。 有关此更多信息,请访问此链接: http://techcrunch.com/2012/03/24/apple-udids/