iphone开发获取设备id号
iphone开发时某些情况我们可能需要获取用户使用的设备唯一编号来做一些事情。
我现在要实现一个验证的过程,但目前为止ios 最新sdk中还没有提供获取用户手机号码的api,所以只有通过获取设备id做验证了,具体代码很简单。
//获取设备id号 UIDevice *device = [UIDevice currentDevice];//创建设备对象 NSString *deviceUID = [[NSString alloc] initWithString:[device uniqueIdentifier]]; NSLog(@"%@",deviceUID); // 输出设备id