Версия модели:
NSString *model = [[UIDevice currentDevice] model];
Версия iOS:
NSString *systemVersion = [[UIDevice currentDevice] systemVersion];
Имя оператора (минимум iOS 4.0):
#import <CoreTelephony/CTTelephonyNetworkInfo.h>
#import <CoreTelephony/CTCarrier.h>
CTTelephonyNetworkInfo *netInfo = [[CTTelephonyNetworkInfo alloc] init];
CTCarrier *carrier = [netInfo subscriberCellularProvider];
NSString *carrierName = [carrier carrierName];
[netInfo release];