地址:https://github.com/erica/uidevice-extension
1.添加分类到工程
因为该分类多年没更新,必须要自己手动添加新的设备。
2.使用
//
// ViewController.m
#import "ViewController.h"
#import "UIDevice--Hardware.h"
@interface ViewController ()
@end
@implementation ViewController
- (void)viewDidLoad {
[super viewDidLoad];
// 1.获取手机型号
NSLog(@"手机型号:%@", [[UIDevice currentDevice] platformString]);
// 2.获取剩余空间和一共多少空间
NSLog(@"%@--%@", [[UIDevice currentDevice] freeDiskSpace], [[UIDevice currentDevice] totalDiskSpace]);
}
@end