1. 使用
将压缩包中的System Services文件夹导入项目,如果Utilities文件夹中存在route.h文件,则删除。
2. 修改
将SSNetworkInfo.m中的第18行#include "route.h"
修改为#import <net/route.h>
3. 使用
1). 导入头文件SystemServices.h
2). 打印
#import "ViewController.h"
#import "SystemServices.h"
@implementation ViewController
- (void)viewDidLoad {
[super viewDidLoad];
NSLog(@"All System Information: %@", [SystemServices sharedServices].allSystemInformation);
}
@end