web-dev-qa-db-ja.com

iOSでデバイスIDまたはMacアドレスを取得する

RESTを使用してサーバーと通信するアプリケーションがあります。一意性の検証のために、iPhoneのMACアドレスまたはデバイスIDを取得したいのですが、どうすればよいですか?

29
Daniel

[[UIDevice currentDevice] uniqueIdentifier]は、各デバイスに固有であることが保証されています。

41
Steven Canfield

uniqueIdentifier(iOS 5.0では非推奨。代わりに、アプリに固有の一意の識別子を作成してください。)

ドキュメントは、_[[UIDevice currentDevice] uniqueIdentifier]_の代わりに CFUUIDCreate の使用を推奨しています

これがアプリで一意のIDを生成する方法です

_CFUUIDRef uuidRef = CFUUIDCreate(kCFAllocatorDefault);
NSString *uuidString = (NSString *)CFUUIDCreateString(NULL,uuidRef);

CFRelease(uuidRef);
_

同じuuidStringを再度生成することはできないため、uuidStringをユーザーのデフォルトまたはその他の場所に保存する必要があることに注意してください。

IPasteboard を使用して、生成されたuuidを保存できます。アプリが削除されて再インストールされる場合は、UIPasteboardから古いuuidを読み取ることができます。デバイスが消去されると、ペーストボードは消去されます。

IOS 6では、UUID文字列を作成するように設計された NSUUID Class が導入されました

また、iOS 6で@property(nonatomic, readonly, retain) NSUUID *identifierForVendorIDevice クラスに追加しました

このプロパティの値は、同じデバイスで実行されている同じベンダーのアプリでも同じです。ベンダーが異なる同じデバイス上のアプリと、ベンダーに関係なく異なるデバイス上のアプリの場合、異なる値が返されます。

アプリがバックグラウンドで実行されている場合、ユーザーがデバイスを再起動してから初めてデバイスのロックを解除する前に、このプロパティの値はnilになることがあります。値がnilの場合は、しばらくしてからもう一度値を取得してください。

また、iOS 6では、AdSupport.frameworkの ASIdentifierManager クラスを使用できます。そこにあります

_@property(nonatomic, readonly) NSUUID *advertisingIdentifier
_

説明UIDeviceのidentifierForVendorプロパティとは異なり、同じ値がすべてのベンダーに返されます。この識別子は、ユーザーがデバイスを消去した場合などに変更される可能性があるため、キャッシュしないでください。

アプリがバックグラウンドで実行されている場合、ユーザーがデバイスを再起動してから初めてデバイスのロックを解除する前に、このプロパティの値はnilになることがあります。値がnilの場合は、しばらくしてからもう一度値を取得してください。

編集:

advertisingIdentifierが返される可能性があることに注意してください

00000000-0000-0000-0000-000000000000

iOSにバグがあるようです。関連質問: advertisingIdentifierおよびidentifierForVendorは "00000000-0000-0000-0000-000000000000"を返します

40
Alex Terente

Macアドレスの場合は、

#import <Foundation/Foundation.h>

@interface MacAddressHelper : NSObject

+ (NSString *)getMacAddress;

@end

志願

#import "MacAddressHelper.h"
#import <sys/socket.h>
#import <sys/sysctl.h>
#import <net/if.h>
#import <net/if_dl.h>

@implementation MacAddressHelper

+ (NSString *)getMacAddress
{
  int                 mgmtInfoBase[6];
  char                *msgBuffer = NULL;
  size_t              length;
  unsigned char       macAddress[6];
  struct if_msghdr    *interfaceMsgStruct;
  struct sockaddr_dl  *socketStruct;
  NSString            *errorFlag = NULL;

  // Setup the management Information Base (mib)
  mgmtInfoBase[0] = CTL_NET;        // Request network subsystem
  mgmtInfoBase[1] = AF_ROUTE;       // Routing table info
  mgmtInfoBase[2] = 0;              
  mgmtInfoBase[3] = AF_LINK;        // Request link layer information
  mgmtInfoBase[4] = NET_RT_IFLIST;  // Request all configured interfaces

  // With all configured interfaces requested, get handle index
  if ((mgmtInfoBase[5] = if_nametoindex("en0")) == 0) 
    errorFlag = @"if_nametoindex failure";
  else
  {
    // Get the size of the data available (store in len)
    if (sysctl(mgmtInfoBase, 6, NULL, &length, NULL, 0) < 0) 
      errorFlag = @"sysctl mgmtInfoBase failure";
    else
    {
      // Alloc memory based on above call
      if ((msgBuffer = malloc(length)) == NULL)
        errorFlag = @"buffer allocation failure";
      else
      {
        // Get system information, store in buffer
        if (sysctl(mgmtInfoBase, 6, msgBuffer, &length, NULL, 0) < 0)
          errorFlag = @"sysctl msgBuffer failure";
      }
    }
  }
  // Befor going any further...
  if (errorFlag != NULL)
  {
    NSLog(@"Error: %@", errorFlag);
    return errorFlag;
  }
  // Map msgbuffer to interface message structure
  interfaceMsgStruct = (struct if_msghdr *) msgBuffer;
  // Map to link-level socket structure
  socketStruct = (struct sockaddr_dl *) (interfaceMsgStruct + 1);  
  // Copy link layer address data in socket structure to an array
  memcpy(&macAddress, socketStruct->sdl_data + socketStruct->sdl_nlen, 6);  
  // Read from char array into a string object, into traditional Mac address format
  NSString *macAddressString = [NSString stringWithFormat:@"%02X:%02X:%02X:%02X:%02X:%02X", 
                                macAddress[0], macAddress[1], macAddress[2], 
                                macAddress[3], macAddress[4], macAddress[5]];
  //NSLog(@"Mac Address: %@", macAddressString);  
  // Release the buffer memory
  free(msgBuffer);
  return macAddressString;
}

@end

使用する:

NSLog(@"MAC address: %@",[MacAddressHelper getMacAddress]);
19
Blazer

これを使って:

NSUUID *id = [[UIDevice currentDevice] identifierForVendor];
NSLog(@"ID: %@", id);
5

IOS 5 [[UIDevice currentDevice] uniqueIdentifier]は廃止予定です。

-identifierForVendorまたは-identifierForAdvertisingを使用することをお勧めします。

多くの役立つ情報がここにあります:

iOS6 UDID-identifierForVendorにはidentifierForAdvertisingと比べてどのような利点がありますか?

4
Andrey