I have iOS 7 jail-broken iPhone and I want to access about info (e.g settings -> General -> About). Actually I want to get IMEI and other stuff in about controller. Any clue guide will highly appreciated.
MobileGestalt Library has a lot of information check it's header here
add this in your MakeFile
xxx_LIBRARIES = MobileGestalt
then declare:
OBJC_EXTERN CFStringRef MGCopyAnswer(CFStringRef key) WEAK_IMPORT_ATTRIBUTE;
in your Header file
then for getting the IMEI number you have to use :
CFStringRef IMEINumber = MGCopyAnswer(CFSTR("InternationalMobileEquipmentIdentity"));
NSLog (@"IMEI Number : %@", IMEINumber);
GoodLuck..
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With