-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathViewController.m
More file actions
33 lines (25 loc) · 895 Bytes
/
Copy pathViewController.m
File metadata and controls
33 lines (25 loc) · 895 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
//
// ViewController.m
// UIDevice
//
// Created by 孙苏 on 15/3/25.
// Copyright (c) 2015年 sunsu. All rights reserved.
//
#import "ViewController.h"
@interface ViewController ()
@end
@implementation ViewController
- (void)viewDidLoad {
[super viewDidLoad];
NSLog(@"%@",[[UIDeviceInfomation sharedUIDeviceInfomation]getDeviceID]);
NSLog(@"%@",[[UIDeviceInfomation sharedUIDeviceInfomation]getDeviceVersion]);
NSLog(@"%@",[[UIDeviceInfomation sharedUIDeviceInfomation]getCurrentTime]);
NSLog(@"%@",[[UIDeviceInfomation sharedUIDeviceInfomation]getCurrentNetwork]);
NSLog(@"%@",[[UIDeviceInfomation sharedUIDeviceInfomation]fetchSSIDInfo]);
// Do any additional setup after loading the view, typically from a nib.
}
- (void)didReceiveMemoryWarning {
[super didReceiveMemoryWarning];
// Dispose of any resources that can be recreated.
}
@end