Im developing an iPhone app, in its about page I want to display iphone version,IOS version,name of the the Network Provider. which i want fetch it from the phone itself. How to do that Please Help.

Thanks in advance

link|improve this question

50% accept rate
feedback

1 Answer

up vote 1 down vote accepted

Model Version:

NSString *model = [[UIDevice currentDevice] model];

iOS Version:

NSString *systemVersion = [[UIDevice currentDevice] systemVersion];

Carrier name (iOS 4.0 minimum):

#import <CoreTelephony/CTTelephonyNetworkInfo.h>
#import <CoreTelephony/CTCarrier.h>

CTTelephonyNetworkInfo *netInfo = [[CTTelephonyNetworkInfo alloc] init];
CTCarrier *carrier = [netInfo subscriberCellularProvider];
NSString *carrierName = [carrier carrierName];
[netInfo release];
link|improve this answer
thanks a lot!!! :) – Nagaraja Sathe Oct 4 '11 at 4:06
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.