0

Possible Duplicate:
How to get IMEI on iPhone?

How to get imei number from iPhone programmatically?

Cœur
  • 37,241
  • 25
  • 195
  • 267
Susanthi
  • 33
  • 1
  • 5

1 Answers1

1

It have some difficult get the IMEI number programatically. However, if you're looking for a way to identify a particular phone, you can use the UDID (Unique Device Identifier) to do so.

 NSString *UDID = [[UIDevice currentDevice] uniqueIdentifier];

and also try this for IMEI

NSString *imei = [[NetworkController sharedInstance] IMEI];
NewStack
  • 990
  • 8
  • 19