CNLiveViewController.m
763 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
//
// CNLiveViewController.m
// CNLivePublishContent
//
// Created by 殷巧娟 on 12/05/2018.
// Copyright (c) 2018 殷巧娟. All rights reserved.
//
#import "CNLiveViewController.h"
#import <CNLivePublishContent/NetWorkTest.h>
@interface CNLiveViewController ()
@end
@implementation CNLiveViewController
- (void)viewDidLoad
{
[super viewDidLoad];
[NetWorkTest netWorkGet];
// NetWorkTest *m = [NetWorkTest new];
// m.delegate = self;
//
// Do any additional setup after loading the view, typically from a nib.
}
//- (NSDictionary *)netWorkGet:(NetWorkTest *)test{
// return @{@"1":@"12"};
//}
- (void)didReceiveMemoryWarning
{
[super didReceiveMemoryWarning];
// Dispose of any resources that can be recreated.
}
@end