IMEI number using iphone code [duplicate]

2019-09-06 07:38发布

Possible Duplicate:
How to get IMEI on iPhone?

how can i get IMEI code from iphone simulator?

标签: iphone imei
4条回答
迷人小祖宗
2楼-- · 2019-09-06 08:18

IMEI is an HW code of each phone. You can get phones' IMEI typing: *#06*. In iPhone simulator there is no IMEI.

查看更多
ら.Afraid
3楼-- · 2019-09-06 08:24

As others stated - you cannot get IMEI through public API. If you want to obtain some device identifier to use in your application you must use uniqueIdentifier property defined in UIDevice class - it is there for exactly that purpose.

NSString* uniqueID = [UIDevice currentDevice].uniqueIdentifier;

FYI, you can obtain IMEI using private frameworks - see this question, but your app will be rejected from app store then.

查看更多
ら.Afraid
4楼-- · 2019-09-06 08:40

I'm not sure that it's possible - besides which, Apple will moan if you publish software which does that on the AppStore...

查看更多
smile是对你的礼貌
5楼-- · 2019-09-06 08:41

You can't. It's not something you can do with the iPhone SDK.

You can get the iPhone/iPod's Unique Device Identifier (UDID), but not the IMEI, Serial or phone number.

查看更多
登录 后发表回答