如何以编程方式获取iPhone的序列号?

时间:2017-03-17 11:41:53

标签: ios objective-c iphone device serial-number

我想以编程方式获取iOS设备的序列号。

我尝试使用https://gist.github.com/0xced/566994库,我可以在模拟器中获取序列号,但这不适用于真实设备。

注意:我没有在itune上传我的应用程序。

1 个答案:

答案 0 :(得分:0)

我找到的唯一方法是使用identifierForVendor属性

#import "UIDevice+IdentifierAddition.h"

[[[UIDevice currentDevice] identifierForVendor] UUIDString];

注意:但是,如果要实现用于提供广告的系统,请使用ASIdentifierManager类的advertisingIdentifier属性中的值而不是此属性。