Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
可能重复: 如何在 iPhone 上获取 IMEI?
如何以imei编程方式从 iPhone 获取号码?
imei
以编程方式获取 IMEI 号码有些困难。但是,如果您正在寻找一种方法来识别特定电话,则可以使用 UDID(唯一设备标识符)来做到这一点。
NSString *UDID = [[UIDevice currentDevice] uniqueIdentifier];
也可以试试这个 IMEI
NSString *imei = [[NetworkController sharedInstance] IMEI];