我想在 iPhone 上获取 IMEI。我尝试使用以下代码:
#import "Message/NetworkController.h"
NetworkController *ntc=[[NetworkController sharedInstance] autorelease];
NSString *imeistring = [ntc IMEI];
但是找不到 NetworkController。
我还发现我可以使用以下方法获得 uniqueIdentifier:
UIDevice *myDevice = [UIDevice currentDevice];
NSString *identifier = myDevice.uniqueIdentifier;
但这不能帮助我获得 IMEI。
如何在 iPhone 上获取 IMEI?