2

UDIDはiOS5.0で非推奨になっていることを知っています。気が狂って[UIDevicecurrentDevice].uniqueIdentifier呼び出しがあるすべてのアプリを更新する前に、iPhone4SがUDIDを報告するかどうかを知りたいです。

UDIDがあれば、基本的にアプリをすぐに更新する手間が省けます。UDIDがなく、基本的にUDIDの呼び出し後にアプリを終了する場合は、アプリをすぐに更新する必要があります。

前もって感謝します。

4

4 に答える 4

4

このオープンソースライブラリ(実際には2つの単純なカテゴリ)uniqueIdentifierに切り替えることをお勧めします。デバイスのMACアドレスとAppBundleIdentifierを利用して、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 + IdentityAddition.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
于 2011-10-30T18:07:19.893 に答える
3

-[UIDevice uniqueIdentifier]iOS 5でも引き続き機能しますが、別のメカニズムに移行する必要があります。

于 2011-10-15T03:36:24.897 に答える
3

それは間違いなく今でも機能します。デバイスが有効な UDID を提示している iPhone 4S ユーザーからの大量の購入が今日システムに記録されているのを見てきました。(経由で取得uniqueIdentifier) しかし、Apple は iOS 6 でそれを削除する可能性が非常に高いため、回避策を検討し始める価値があります。

于 2011-10-15T03:38:50.963 に答える
0

[[UIDevice currentDevice] uniqueDeviceIdentifier] は引き続き機能しますが、Apple はセキュリティ上の理由からデバイスの UDID にアクセスするアプリを拒否し始めているため、UDID の別の代替手段を見つけたほうがよいでしょう。詳細については、次のリンクを参照してください: http://techcrunch.com/2012/03/24/apple-udids/

于 2012-03-27T06:16:44.590 に答える