YYKit中对UIDevice的拓展,accumulate knowledge !!!

首先

#include <sys/socket.h>
#include <sys/sysctl.h>
#include <net/if.h>
#include <net/if_dl.h>
#include <mach/mach.h>
#include <arpa/inet.h>
#include <ifaddrs.h>

1. Machine Model

参考博客

如何获取机器的型号呢?有人会说使用:[UIDevice currentDevice].model 方案,这是不正确的。因为这个方案只会区分iPhone 和 iPod touch。

在YYKit中,他是通过BSD 底层方法来获取型号,例如:iPhone6,2 、 iPhone4,1 、x86_64 。

YYKit获取Model代码:

#import <sys/sysctl.h>

- (NSString *)machineModel {
    static dispatch_once_t one;
    static NSString *model;
    dispatch_once(&one, ^{
        size_t size;
        sysctlbyname("hw.machine", NULL, &size, NULL, 0);
        char *machine = malloc(size);
        sysctlbyname("hw.machine", machine, &size, NULL, 0);
        model = [NSString stringWithUTF8String:machine];
        free(machine);
    });
    return model;
}

第二种获取Model代码:

#import <sys/utsname.h>

- (NSString *)machineModel
{
    struct utsname systeminfo;
    uname(&systeminfo);
    return [NSString stringWithCString:systeminfo.machine encoding:NSUTF8StringEncoding];
}

2.1 系统库:sysctl.h 和 utsname.h 研究研究

utsname.h

struct  utsname {
    char    sysname[_SYS_NAMELEN];  /* [XSI] Name of OS */
    char    nodename[_SYS_NAMELEN]; /* [XSI] Name of this network node */
    char    release[_SYS_NAMELEN];  /* [XSI] Release level */
    char    version[_SYS_NAMELEN];  /* [XSI] Version level */
    char    machine[_SYS_NAMELEN];  /* [XSI] Hardware type */
};
  • sysname :设备操作系统的名称,例如:Darwin 。
  • nodename :设备本地名称,例如:LVde-iPhone(手机可以通过Settings -> General -> About -> Name 修改)。
  • version :设备操作系统的版本,例如:Darwin Kernel Version 14.0.0: Tue Aug 19 15:08:02 PDT 2014; root:xnu-2783.1.72~8/RELEASE_ARM_S5L8940X
  • machine : 设备的型号,例如:iPhone6, 1 。

sysctl.h : Unix 系统底层获取系统相关的硬件等信息。 参考博客

#define CTL_KERN    1       /* "high kernel": proc, limits 内核核心信息及行为控制 */
#define CTL_VM      2       /* virtual memory  虚拟内存子系统统计数据和行为控制  */
#define CTL_VFS     3       /* file system, mount type is next  虚拟文件系统信息和行为控制 */
#define CTL_NET     4       /* network, see socket.h  网络子系统 */
#define CTL_DEBUG   5       /* debugging parameters  内核调试与信息查询 */
#define CTL_HW      6       /* generic cpu/io  硬件驱动与信息查询 */
#define CTL_MACHDEP 7       /* machine dependent  平台相关的行为控制 */
#define CTL_USER    8       /* user-level  用户环境配置  */

参考代码:

- (int)getSystemInfo:(int)typeSpecifier
{
    size_t size = sizeof(int);
    int results ;
    int mib[2] = {CTL_HW,typeSpecifier};
    sysctl(mib, 2, &results, &size, NULL, 0);
    return results;
}

- (void)test
{
    double totalMem = (double)[self getSystemInfo:HW_PHYSMEM];
    double userMem  = (double)[self getSystemInfo:HW_USERMEM];

    NSLog(@"总内存   - %f GB",totalMem/(1048576000.0));
    NSLog(@"用户内存 - %f GB",userMem/(1048576000.0));
}

//  结果:(// 1G = 1048576000 B)
总内存   - 1.000000 GB
用户内存 - 0.799863 GB

3. Machine Name

通过Machine Model 来匹配设备名:
部分代码:

          @"Watch1,1" : @"Apple Watch",
          @"Watch1,2" : @"Apple Watch",

          @"iPod1,1" : @"iPod touch 1",

          ......

          @"iPhone8,1" : @"iPhone 6s",
          @"iPhone8,2" : @"iPhone 6s Plus",
          @"iPhone8,4" : @"iPhone SE",

github地址


2.IP Address

我的一篇博文 - 2.2节中利用gethostbyname() 解析域名获取IP,但是在测试时候发生崩溃,后来经过资料显示是iOS 6以上不能使用。

YYKit中使用的正式另一种方案 - getifaddrs ;首先#import <ifaddrs.h>

2.1 关于getifaddrs

参考地址:Linux - getifaddrs

The getifaddrs() function creates a linked list of struckures describing the network interfaces of the local system, and stores the address of the first item of the list in * ifap.

3. Network Traffic Bytes

Get the network traffic bytes according to the network traffic type.

3.1 Network Traffic Type


iOS - YYAdd对UIDevice的拓展的更多相关文章

  1. 获取iOS系统版本 --- UIDevice

    UIDevice类是一个单例,其唯一的实例( [UIDevice currentDevice] ) 代表了当前使用的设备. 通过这个实例,可以获得设备的相关信息(包括系统名称,版本号,设备模式等等). ...

  2. iOS开发之UIDevice通知

    UIDevice类提供了一个单例对象,它代表着设备,通过它可以获得一些设备相关的信息,比如电池电量值(batteryLevel).电池状态(batteryState).设备的类型(model,比如iP ...

  3. iOS APP 新增表情包拓展

    图示教程如下:

  4. iOS捷径(Workflow 2.0)拓展

    前言 iOS12 捷径(Workflow 2.0)入门 iOS12 捷径(Workflow 2.0)进阶 iOS12捷径(Workflow 2.0)实例大全 注:本文主要介绍如何获取URL Schem ...

  5. iOS的UIDevice,NSBundle,NSLocale

    iOS的APP的应用开发的过程中,有时为了bug跟踪或者获取用反馈的需要自动收集用 户设备.系统信息.应用信息等等,这些信息方便开发者诊断问题,当然这些信息是用户的非隐私信息,是通过开发api可以获取 ...

  6. iOS开发 获取手机信息(UIDevice,NSBundle,NSlocale)

    在开发中,需要获取当前设备的一些信息,可以通过UIDevice,NSbundle,NSlocale获取. UIDevice UIDevice 提供了多种属性,类函数及状态通知,可以检测手机电量,定位, ...

  7. iOS学习笔记(十三)——获取手机信息(UIDevice、NSBundle、NSLocale)

    iOS的APP的应用开发的过程中,有时为了bug跟踪或者获取用反馈的需要自动收集用户设备.系统信息.应用信息等等,这些信息方便开发者诊断问题,当然这些信息是用户的非隐私信息,是通过开发api可以获取到 ...

  8. ios 获取手机信息(UIDevice、NSBundle、NSLocale)

    iOS的SDK中提供了UIDevice.NSBundle,NSLocale. UIDevice        UIDevice提供了多种属性.类函数及状态通知,帮助我们全方位了解设备状况. 从检測电池 ...

  9. iOS地图 -- 定位初使用

    iOS的定位服务用到的框架是#import <CoreLocation/CoreLocation.h> 定位中用到的类是CLLocationManager 一.iOS8.0之前的定位 向用 ...

随机推荐

  1. <<你的灯亮着吗?>>读书笔记

    本书是美国计算机传奇人物杰拉尔德.温伯格和唐纳德.高斯所著,我在网上买到的2003年版的本书,发现本书用20则幽默的现代寓言故事,60幅精美插图,以及一系列的适当提问和建议,让我们的思考方式慢慢得以扩 ...

  2. .NET/ASP.NET MVC(模块化开发AraeRegistration)

    阅读目录: 1.开篇介绍 2.AreaRegistration注册路由(传递路由上下文进行模块化注册) 1]开篇介绍 ASP.NET Routing 路由功能非常强大,设计的也很巧妙:如果说ASP.N ...

  3. Python字典的基本组成以及用法

    #!/usr/bin/env python# -*- coding:utf-8 -*-"""老规矩以下方法环境2.7.x,请3.x以上版本的朋友记得格式print(输出内 ...

  4. Xstream学习资料

    java中有关xml操作的,我们项目中首推Xstream.至于原因不说了.跟着大众的脚步走应该没错的.有关Xstream的文档如下. 官方文档 XStream完美转换XML.JSON XStream实 ...

  5. 虚基类&虚继承

    发现这个月准备竞赛完全没有更新哎... 改了下某华大一c++测试题...网上对虚继承讲的要么太繁琐要么不到位,自力更生 #include<iostream> #include<fst ...

  6. [No000084]C# 使用Log4Net(1)-快速建立一个demo

    1.下载Log4Net: http://logging.apache.org/log4net/download_log4net.cgi 2.新建一个WinForm程序,取名Log4NetDemo 3. ...

  7. Redis-基于php简单安装使用

    1.下载php相关redis扩展(apache选vc6),下载地址: https://github.com/phpredis/phpredis/downloads 2.修改php.ini,增加下面两项 ...

  8. Linux下Nginx+Tomcat负载均衡和动静分离配置要点

    本文使用的Linux发行版:CentOS6.7 下载地址:https://wiki.centos.org/Download 一.安装Nginx 下载源:wget http://nginx.org/pa ...

  9. JS截取字符串

    使用 substring()或者slice() 函数:split() 功能:使用一个指定的分隔符把一个字符串分割存储到数组例子:str=”jpg|bmp|gif|ico|png”;arr=theStr ...

  10. 详解mysql int类型的长度值问题【转】

    mysql在建表的时候int类型后的长度代表什么? 是该列允许存储值的最大宽度吗? 为什么我设置成int(1), 也一样能存10,100,1000呢. 当时我虽然知道int(1),这个长度1并不代表允 ...