萤石云 iOSSDK,移植跨平台相关工程
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
45
46
47
48
49
50
51
//
//  PrefixHeader.pch
//  EZOpenSDKDemo
//
//  Created by linyong on 16/10/26.
//  Copyright © 2016年 Ezviz. All rights reserved.
//
 
#ifndef PrefixHeader_pch
#define PrefixHeader_pch
 
// Include any system framework and library headers here that should be included in all compilation units.
// You will also need to set the Prefix Header build setting of one or more of your targets to reference this file.
 
#if 0
 
#define EZVIZ_GLOBAL_DEMO
 
#else
 
#define EZVIZ_OPEN_DEMO
 
#endif
 
#define DEMO_ONLINE //线上服务器
 
//#import "Macros.h"
//#import "UIView+EZExtension.h"
#import "UIView+Toast.h"
//#import "JXTAlertController.h"
//#import "NSDate+DateTools.h"
#import "Masonry.h"
#import "DDKit.h"
 
#import "EZOpenSDK.h"
#import "EZGlobalSDK.h"
#import "GlobalKit.h"
#import "EZHttpUtil.h"
#import "EZSDK.h"
 
//#ifdef EZVIZ_GLOBAL_DEMO
//
//#define EZOPENSDK [EZGlobalSDK class]
//
//#else
//
//#define EZOPENSDK [EZOpenSDK class]
//
//#endif
 
#endif /* PrefixHeader_pch */