IOS之获取设备的信息

  1. NSLog(@"globallyUniqueString=%@",[[NSProcessInfo processInfo] globallyUniqueString]);//全球唯一标识
  2. NSLog(@"uniqueIdentifie=%@",[UIDevice currentDevice].uniqueIdentifier);//唯一的标识 可用于区分设备
  3. NSLog(@"name=%@",[UIDevice currentDevice].name);//设备的名称  李四的 iPad、王五的 iPad .。。
  4. NSLog(@"systemName=%@",[UIDevice currentDevice].systemName);//系统的名称  iPhone OS
  5. NSLog(@"systemVersion=%@",[UIDevice currentDevice].systemVersion);//设备系统的版本号  5.1.1、6.0
  6. NSLog(@"model=%@",[UIDevice currentDevice].model);//设备的型号   iPad、iphone、ipod touch。。。
  7. NSLog(@"localizedModel=%@",[UIDevice currentDevice].localizedModel);//本地化的模型  iPad
  8. NSLog(@"batteryLevel=%lf",[UIDevice currentDevice].batteryLevel);//电池电量
时间: 2024-10-09 09:29:08

IOS之获取设备的信息的相关文章

iOS开发-获取设备型号信息

开发中有的时候查看设计统计数据,或者通过日志查看错误信息,这个时候我们就需要获取获取设备信息,看下关于设备有几种方法: NSLog(@"%@",[[UIDevice currentDevice] name]);//设备名称 NSLog(@"%@",[[UIDevice currentDevice] model]);//设备类型 NSLog(@"%@",[[UIDevice currentDevice] localizedModel]); NSLo

Android上获取设备的信息

http://www.cnblogs.com/chenyingzhong/archive/2011/07/26/2117259.html Android上获取设备的信息,布布扣,bubuko.com

获取设备的信息

NSLog(@"globallyUniqueString=%@",[[NSProcessInfo processInfo] globallyUniqueString]);//全球唯一标识 NSLog(@"uniqueIdentifie=%@",[UIDevice currentDevice].uniqueIdentifier);//唯一的标识 可用于区分设备 NSLog(@"name=%@",[UIDevice currentDevice].na

android获取设备全部信息

private static final String FILE_MEMORY = "/proc/meminfo"; private static final String FILE_CPU = "/proc/cpuinfo"; /** * 得到IMEI * * @return */ public static final String getIMEI(Context context) { TelephonyManager tm = (TelephonyManage

iOS获取设备版本信息

系统提供的接口[[UIDevice currentDevice] model]只能获取iphone,ipad无法具体到iphone6等, 下面这个接口可以获取到具体的,后续有新的系统在增加 + (NSString*)deviceVersion { // 需要加入#import "sys/utsname.h" struct utsname systemInfo; uname(&systemInfo); NSString *deviceString = [NSString stri

iOS 友盟获取设备识别信息

Class cls = NSClassFromString(@"UMANUtil"); SEL deviceIDSelector = @selector(openUDIDString); NSString *deviceID = nil; if(cls && [cls respondsToSelector:deviceIDSelector]){ deviceID = [cls performSelector:deviceIDSelector]; } NSData* js

[ios]cocos2dx获取设备的当前预言

参考:http://blog.sina.com.cn/s/blog_923fdd9b0101fmpv.html http://bbs.9ria.com/thread-199313-1-1.html /     获取当前设备的语言 CCSize size= CCDirector::sharedDirector()->getWinSize(); //    这个是显示当前设备 CCLabelTTF * labelLanguage = CCLabelTTF::create("", &q

获取设备通讯录信息

直接上代码: #import "ViewController.h" #import <Contacts/Contacts.h> #import <ContactsUI/ContactsUI.h> @interface ViewController ()<CNContactPickerDelegate> @property (nonatomic, strong) UIButton *btn; @property (nonatomic, strong)

ios获取设备信息总结

1.获取设备的信息 1 UIDevice *device = [[UIDevice alloc] int]; 2 NSString *name = device.name; //获取设备所有者的名称 3 NSString *model = device.name; //获取设备的类别 4 NSString *type = device.localizedModel; //获取本地化版本 5 NSString *systemName = device.systemName; //获取当前运行的系统