首页 > 代码库 > 获取设备唯一标识

获取设备唯一标识


  _currentDeviceID = [[self getDeviceID] UUIDString];

 

// 1、获取设备唯一标识:

- (NSUUID*) getDeviceID
{
    UIDevice *device = [UIDevice currentDevice];
    return device.identifierForVendor;
}

 

获取设备唯一标识