设备信息专题
iOS的APP的应用开发的过程中,有时为了bug跟踪或者获取用反馈的需要自动收集用户设备、系统信息、应用信息等等,这些信息方便开发者诊断问题,当然这些信息是用户的非隐私信息,是通过开发api可以获取到的。那么通过那些api可以获取这些信息呢,iOS的SDK中提供了UIDevice,NSBundle,NSLocale。
1 UIDevice类
UIDevice提供了多种属性、类函数及状态通知,帮助我们全方位了解设备状况。从检测电池电量到定位设备与临近感应,UIDevice所做的工作就是为应用程序提供用户及设备的一些信息。UIDevice类还能够收集关于设备的各种具体细节,例如机型及iOS版本等。其中大部分属性都对开发工作具有积极的辅助作用。下面的代码简单的使用UIDevice获取手机属性。
1.1 获取设备基本信息
UIDevice *device_=[[UIDevicealloc] init];
NSLog(@"设备所有者的名称--%@",device_.name);
NSLog(@"设备的类别-----%@",device_.model);
NSLog(@"设备的的本地化版本-%@",device_.localizedModel);
NSLog(@"设备运行的系统---%@",device_.systemName);
NSLog(@"当前系统的版本---%@",device_.systemVersion);
NSLog(@"设备唯一识别码-----%@",device_.identifierForVendor.UUIDString);
//得到设备屏幕高度
float screenHeight=[UIScreenmainScreen].bounds.size.height;
打印结果如下
2013-03-08 17:31:13.944WaiMai[14982:907]设备所有者的名称--“zhangqingfeng”的iPhone
2013-03-08 17:31:13.951WaiMai[14982:907]设备的类别-----iPhone
2013-03-08 17:31:13.953WaiMai[14982:907]设备的的本地化版本-iPhone
2013-03-08 17:31:13.957WaiMai[14982:907]设备运行的系统---iPhone OS
2013-03-08 17:31:13.961WaiMai[14982:907]当前系统的版本---6.0.1
2013-03-08 17:31:13.969WaiMai[14982:907]设备识别码-----7305AFE8-66C0-4C6B-8173-1AA61E9F837D
2013-03-08 17:31:14.178 WaiMai[14982:1703]
1.2 获取设备的唯一标示符
NSString *identifier = [[[UIDevice currentDevice] identifierForVendor] UUIDString];
1.3 获取当前屏幕分辨率的信息
1 CGRect rect = [[UIScreen mainScreen] bounds];
2 CGFloat scale = [[UIScreen mainScreen].scale];
3 CGFloat width = rect.size.width * scale;
CGFloat height = rect.size.height * scale;
1.4 设备震动
需要加入AudioToolboxframework,导入头文件 #import<AudioToolbox/AudioToolbox.h>
在需要震动的地方添加代码:
4 AudioServicesPlaySystemSound ( kSystemSoundID_Vibrate) ;
但是貌似这个不支持传入震动时间和模式,自己去控制吧。
1.5 获取电池的相关信息
@implementation BatterMonitor
//获取电池当前的状态,共有4种状态
-(NSString*) getBatteryState {
UIDevice *device = [UIDevice currentDevice];
if (device.batteryState == UIDeviceBatteryStateUnknown) {
return @"UnKnow";
}else if (device.batteryState == UIDeviceBatteryStateUnplugged){
return @"Unplugged";
}else if (device.batteryState == UIDeviceBatteryStateCharging){
return @"Charging";
}else if (device.batteryState == UIDeviceBatteryStateFull){
return @"Full";
}
return nil;
}
//获取电量的等级,0.00~1.00
-(float) getBatteryLevel {
return [UIDevice currentDevice].batteryLevel;
}
-(void) getBatteryInfo
{
NSString *state = getBatteryState();
float level = getBatteryLevel()*100.0;
//yourControlFunc(state, level); //写自己要实现的获取电量信息后怎么处理
}
//打开对电量和电池状态的监控,类似定时器的功能
-(void) didLoad
{
[[UIDevice currentDevice] setBatteryMonitoringEnable:YES];
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(getBatteryInfo:) name:UIDeviceBatteryStateDidChangeNotification object:nil];
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(getBatteryInfo:) name:UIDeviceBatteryLevelDidChangeNotification object:nil];
[NSTimer scheduledTimerWithTimeInterval:0.5f target:self selector:@selector(getBatteryInfo:) userInfo:nil repeats:YES];
}
@end
2 运营商信息CoreTelephony
2.1 获取运行商的名称
需要先导入头文件
5 #import <CoreTelephony/CTCarrier.h>
6 #import <CoreTelephony/CTTelephonyNetworkInfo.h>
创建对象
1 CCTelephonyNetworkInfo *info = [[CTTelephonyNetworkInfo alloc] init];
1 CTCarrier *carrier = [info subscriberCellularProvider];
2 NSString *mCarrier = [NSString stringWithFormat:@"%@",[carrier carrierName]];
2.2 获取当前网络的类型
ios7之后可以按照以下方式获取。方便而且类型多
1 NSString *mConnectType = [[NSString alloc] initWithFormat:@"%@",info.currentRadioAccessTechnology];
类型有以下:
1 CTRadioAccessTechnologyGPRS //介于2G和3G之间,也叫2.5G ,过度技术
2 CTRadioAccessTechnologyEdge //EDGE为GPRS到第三代移动通信的过渡,EDGE俗称2.75G
3 CTRadioAccessTechnologyWCDMA
4 CTRadioAccessTechnologyHSDPA //亦称为3.5G(3?G)
5 CTRadioAccessTechnologyHSUPA //3G到4G的过度技术
6 CTRadioAccessTechnologyCDMA1x //3G
7 CTRadioAccessTechnologyCDMAEVDORev0 //3G标准
8 CTRadioAccessTechnologyCDMAEVDORevA
9 CTRadioAccessTechnologyCDMAEVDORevB
10 CTRadioAccessTechnologyeHRPD //电信使用的一种3G到4G的演进技术, 3.75G
11 CTRadioAccessTechnologyLTE //接近4G
ios7之前的话apple给我们提供了Reachability来获取。
首先要导入SystemConfiguration.framework,把下载下来的Reachability.h和Reachability.m加进项目中
1 Reachability *reach = [Reachability reachabilityWithHostName:@"www.apple.com"];
2 switch([reach currentReachabilityStatus])
3 {
4 case NotReachable: //没有连接上
5 //do something
6 break;
7 case ReachableViaWiFi: //通过wifi连接
8 //do something
9 break;
10 case ReachableViaWWAN: //通过GPRS连接
11 //do something
12 break;
13 default: <span style="white-space:pre"> </span>//未知情况
14 //do something
15 break;
16 }
http://blog.csdn.net/qijianli/article/details/19922653 这个博客还说了其它的方法,不过因为是调用私有API,所以没有采用。
2.3 获取当前信号的强弱
这个貌似没有给出官方的api,但是网上有人说可以用私有的api实现,但是通不过appStore的审核,方法如下:
利用linux下动态库显式调用api的函数。先包含头文件 #import<dlfcn.h>
1 (int) getSignalLevel
2 {
3 voidvoid *libHandle = dlopen("/System/Library/Frameworks/CoreTelephony.framework/CoreTelephony",RTLD_LAZY);//获取库句柄
4 int (*CTGetSignalStrength)(); //定义一个与将要获取的函数匹配的函数指针
5 CTGetSignalStrength = (int(*)())dlsym(libHandle,"CTGetSignalStrength"); //获取指定名称的函数
6
7 if(CTGetSignalStrength == NULL)
8 return -1;
9 else{
10 int level = CTGetSignalStrength();
11 dlclose(libHandle); //切记关闭库
12 return level
13 }
14 }
3 NSBundle
bundle是一个目录,其中包含了程序会使用到的资源.这些资源包含了如图像,声音,编译好的代码,nib文件(用户也会把bundle称为plug-in). 对应bundle,cocoa提供了类NSBundle.一个应用程序看上去和其他文件没有什么区别. 但是实际上它是一个包含了nib文件,编译代码,以及其他资源的目录.我们把这个目录叫做程序的main bundle。通过这个路径可以获取到应用的信息,例如应用名、版本号等。
//app应用相关信息的获取
NSDictionary *dicInfo = [[NSBundle mainBundle] infoDictionary];
// CFShow(dicInfo);
NSString *strAppName = [dicInfo objectForKey:@"CFBundleDisplayName"];
NSLog(@"App应用名称:%@", strAppName);
NSString *strAppVersion = [dicInfo objectForKey:@"CFBundleShortVersionString"];
NSLog(@"App应用版本:%@", strAppVersion);
NSString *strAppBuild = [dicInfo objectForKey:@"CFBundleVersion"];
NSLog(@"App应用Build版本:%@", strAppBuild);
4 NSLocale
NSLocale可以获取用户的本地化信息设置,例如货币类型,国家,语言,数字,日期格式的格式化,提供正确的地理位置显示等等。下面的代码获取机器当前语言和国家代码。
//Getting the User’s Language
NSArray *languageArray = [NSLocale preferredLanguages];
NSString *language = [languageArray objectAtIndex:0];
NSLog(@"语言:%@", language);//en
NSLocale *locale = [NSLocale currentLocale];
NSString *country = [locale localeIdentifier];
NSLog(@"国家:%@", country); //en_US
5 参考链接
ios获取设备系统信息
http://blog.sina.com.cn/s/blog_9693f61a01017h0k.html
iOS学习笔记(十三)——获取手机信息(UIDevice、NSBundle、NSLocale)
http://blog.csdn.net/xyz_lmn/article/details/8968196
ios获取设备信息总结
http://blog.csdn.net/decajes/article/details/41807977
http://developer.apple.com/library/ios/#documentation/uikit/reference/UIDevice_Class/Reference/UIDevice.html
https://developer.apple.com/library/mac/#documentation/Cocoa/Reference/Foundation/Classes/NSBundle_Class/Reference/Reference.html
https://developer.apple.com/library/mac/#documentation/Cocoa/Reference/Foundation/Classes/NSLocale_Class/Reference/Reference.html
http://mobile.tutsplus.com/tutorials/iphone/ios-sdk-accessing-device-data-with-uidevice-and-nslocale/