美文网首页
iOS开发的过程中怎么获取手机的MAC地址呢?

iOS开发的过程中怎么获取手机的MAC地址呢?

作者: Code_zhou | 来源:发表于2016-06-27 14:48 被阅读2522次

    iOS开发的过程中怎么获取手机的MAC地址呢?

    首先导入头文件:

    #import <sys/sysctl.h>

    #import <net/if.h>

    #import <net/if_dl.h>

    #pragma mark -- 获取mac地址

    - (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)];

    //    NSString *outstring = [NSString stringWithFormat:@"%02x%02x%02x%02x%02x%02x", *ptr, *(ptr+1), *(ptr+2), *(ptr+3), *(ptr+4), *(ptr+5)];

    NSLog(@"outString:%@", outstring);

    free(buf);

    return [outstring uppercaseString];

    }

    相关文章

      网友评论

          本文标题:iOS开发的过程中怎么获取手机的MAC地址呢?

          本文链接:https://www.haomeiwen.com/subject/xpvzdttx.html