web-dev-qa-db-ja.com

iOSデバイスのMACアドレスをプログラムで取得する方法

アプリでiOSデバイスのMACコードをプログラムで取得するにはどうすればよいですか?

16
iPhoneDeveloper

現在、iOS 7デバイス–常に2:00:00:00:00:00のMACアドレスを返します

したがって、[UIDevice identifierForVendor]

メソッドを取得してアプリ固有の一意のキーを取得する方が良い

カテゴリがより適切になります

#import "UIDevice+Identifier.h"

- (NSString *) identifierForVendor1
{
    if ([[UIDevice currentDevice] respondsToSelector:@selector(identifierForVendor)]) {
        return [[[UIDevice currentDevice] identifierForVendor] UUIDString];
    }
    return @"";
}

ここで上記のメソッドを呼び出して一意のアドレスを取得します

NSString *like_UDID=[NSString stringWithFormat:@"%@",
                [[UIDevice currentDevice] identifierForVendor1]];

NSLog(@"%@",like_UDID);
18
Jøhn Nârrøw

次の機能を使用してMACアドレスを取得できます。

+(NSString *)getMacAddress
{
    int                 mgmtInfoBase[6];
    char                *msgBuffer = NULL;
    NSString            *errorFlag = NULL;
    size_t              length;

    // 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";
    // Get the size of the data available (store in len)
    else if (sysctl(mgmtInfoBase, 6, NULL, &length, NULL, 0) < 0) 
        errorFlag = @"sysctl mgmtInfoBase failure";
    // Alloc memory based on above call
    else if ((msgBuffer = malloc(length)) == NULL)
        errorFlag = @"buffer allocation failure";
    // Get system information, store in buffer
    else if (sysctl(mgmtInfoBase, 6, msgBuffer, &length, NULL, 0) < 0)
    {
        free(msgBuffer);
        errorFlag = @"sysctl msgBuffer failure";
    }
    else
    {
        // Map msgbuffer to interface message structure
        struct if_msghdr *interfaceMsgStruct = (struct if_msghdr *) msgBuffer;

        // Map to link-level socket structure
        struct sockaddr_dl *socketStruct = (struct sockaddr_dl *) (interfaceMsgStruct + 1);

        // Copy link layer address data in socket structure to an array
        unsigned char macAddress[6];
        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]];
        if(IsDEBUG) NSLog(@"Mac Address: %@", macAddressString);

        // Release the buffer memory
        free(msgBuffer);

        return macAddressString;
    }

    // Error...
    if(IsDEBUG) NSLog(@"Error: %@", errorFlag);

    return errorFlag;
}

しかし、彼が#Randomclikに言ったように、macアドレスはiOS 7以降では使用できません。

appleから:

IOS 7以降では、iOSデバイスのMACアドレスを要求すると、システムは値02:00:00:00:00:00を返します。デバイスを識別する必要がある場合は、代わりにUIDeviceのidentifierForVendorプロパティを使用します。 (独自の広告目的で識別子が必要なアプリは、代わりにASIdentifierManagerのAdvertisingIdentifierプロパティの使用を検討する必要があります。)

リンク: https://developer.Apple.com/library/prerelease/ios/releasenotes/General/WhatsNewIniOS/Articles/iOS7.html#//Apple_ref/doc/uid/TP40013162-SW1

MACアドレスに関する会話:

iPhoneのMACアドレスをプログラムで取得する方法

10
Guy Kahlon

IOS 7以降では、MACアドレスの取得が機能しないようです。 AppleのiOSドキュメントの新機能をご覧ください。 (非推奨のAPIセクション。)

2
Randomclik

誰もが公式のiOS 7の方法を使用して[UIDevice identifierForVendor]を使用することをお勧めします

http://developer.Apple.com/library/ios/#documentation/uikit/reference/UIDevice_Class/Reference/UIDevice.html

また、いくつかの古い仮定からの移行についても考えてください。

1
Karsten

あなたが推測する次の2つの答えを組み合わせることでそれを得ることができます。

まず、次を使用してデバイスのIPを見つけます。

https://stackoverflow.com/a/30754194/1089206

次に、次を使用して、そのアドレスのMACを見つけます。

https://stackoverflow.com/a/31246085/1089206

私は今それを試してみて、それがどうなるかをお知らせします。

0
sambavadekar