Skip to content

Instantly share code, notes, and snippets.

@dabing1022
Last active May 22, 2022 06:57
Show Gist options
  • Star 3 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save dabing1022/55ce189c87c0b752f7c6 to your computer and use it in GitHub Desktop.
Save dabing1022/55ce189c87c0b752f7c6 to your computer and use it in GitHub Desktop.
IOS_GET_DEVICE_INFO
NSLog(@"HostName: %@", [[NSProcessInfo processInfo] hostName]);
//globallyUniqueString 唯一的标示符,每次调用都会不一样,可以用作一些临时缓存文件的名字
NSLog(@"GlobalUniqueString: %@", [[NSProcessInfo processInfo] globallyUniqueString]);
//操作系统名称
NSLog(@"OperatingSystemName: %@", [[NSProcessInfo processInfo] operatingSystemName]);
//操作系统版本
NSLog(@"OperatingSystemVersion: %@", [[NSProcessInfo processInfo] operatingSystemVersionString]);
//物理内存
NSLog(@"PhysicalMem: %llu", [[NSProcessInfo processInfo] physicalMemory]);
//进程名称
NSLog(@"ProcessName: %@", [[NSProcessInfo processInfo] processName]);
//供应商标识
NSLog(@"UniqueId: %@", [UIDevice currentDevice].identifierForVendor);
//设备类型(iPhone、iPad)
NSLog(@"userInterfaceIdiom: %d", [UIDevice currentDevice].userInterfaceIdiom);
//设备名字
NSLog(@"Name: %@", [UIDevice currentDevice].name);
//系统名字
NSLog(@"SystemName: %@", [UIDevice currentDevice].systemName);
//系统版本
NSLog(@"SystemVersion: %@", [UIDevice currentDevice].systemVersion);
//模型
NSLog(@"Model: %@", [UIDevice currentDevice].model);
//本地化的模型
NSLog(@"LocalizeModel: %@", [UIDevice currentDevice].localizedModel);
//电池状态
NSLog(@"BatteryLevel: %f", [UIDevice currentDevice].batteryLevel);
//2014-07-03 16:52:01.055 CityOfHeart[3528:60b] HostName: dounen
//2014-07-03 16:52:01.058 CityOfHeart[3528:60b] GlobalUniqueString: B4B1EC8C-A805-434B-9D57-106ED70C214A-3528-00000AF6A42D73D7
//2014-07-03 16:52:01.059 CityOfHeart[3528:60b] OperatingSystemName: NSMACHOperatingSystem
//2014-07-03 16:52:01.061 CityOfHeart[3528:60b] OperatingSystemVersion: Version 7.1.1 (Build 11D201)
//2014-07-03 16:52:01.063 CityOfHeart[3528:60b] PhysicalMem: 1035976704
//2014-07-03 16:52:01.064 CityOfHeart[3528:60b] ProcessName: CityOfHeart
//2014-07-03 16:52:01.074 CityOfHeart[3528:60b] UniqueId: <__NSConcreteUUID 0x16693c80> 5ACF8DA1-FAC1-4D70-AB1F-BB696188C5CA
//2014-07-03 16:52:01.075 CityOfHeart[3528:60b] userInterfaceIdiom: 0
//2014-07-03 16:52:01.157 CityOfHeart[3528:60b] Name: 童年
//2014-07-03 16:52:01.159 CityOfHeart[3528:60b] SystemName: iPhone OS
//2014-07-03 16:52:01.161 CityOfHeart[3528:60b] SystemVersion: 7.1.1
//2014-07-03 16:52:01.162 CityOfHeart[3528:60b] Model: iPad
//2014-07-03 16:52:01.163 CityOfHeart[3528:60b] LocalizeModel: iPad
//2014-07-03 16:52:01.165 CityOfHeart[3528:60b] BatteryLevel: -1.000000
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment