-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathViewController.m
More file actions
44 lines (37 loc) · 837 Bytes
/
ViewController.m
File metadata and controls
44 lines (37 loc) · 837 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
34
35
36
37
38
39
40
41
42
43
44
//
// ViewController.m
// github
//
// Created by liuxingxing on 16/5/12.
// Copyright © 2016年 Ping An Insurance(Group) Company of China, Ltd. All rights reserved.
//
#import "ViewController.h"
@interface ViewController ()
@end
@implementation ViewController
- (void)viewDidLoad {
[super viewDidLoad];
NSLog(@"我在开发hello github");
[self test];
NSLog(@"sourcetree study~~~");
}
- (void)test
{
NSLog(@"test~~~~");
NSLog(@"lxx~~~~");
NSLog(@"lxx~~~~");
NSLog(@"lxx~~~~");
NSLog(@"lxx~~~~");
NSLog(@"lxx~~~~");
NSLog(@"lxx~~~~");
NSLog(@"lxx~~~~");
NSLog(@"lxx~~~~");
NSLog(@"master~~~~");
NSLog(@"master~~~~");
NSLog(@"master~~~~");
NSLog(@"master~~~~");
NSLog(@"master~~~~");
NSLog(@"master~~~~");
NSLog(@"master~~~~");
}
@end