国内WASDK 应用墙渠道
hank
2017-03-27 8929369da70ca3a63953bf9448f62acb5d2957a6
commit | author | age
892936 1 //
H 2 //  WAApwCore.h
3 //  WAApwImplUI
4 //
5 //  Created by hank on 2017/3/21.
6 //  Copyright © 2017年 hank. All rights reserved.
7 //
8
9 #import <WASdkIntf/WASdkIntf.h>
10
11 @class WACoreProxy;
12 @class WAApwCore;
13 #define WAApwLog(fmt,...) {\
14 if([WACoreProxy isDebugMode]){\
15 NSLog((@"WAApw LOG [(version %@) %s ]:" fmt), [WAApwCore getVersion],__FUNCTION__, ##__VA_ARGS__);\
16 [WACoreProxy addLogWithString:[NSString stringWithFormat:(@"(version %@) %s ]:" fmt),[WAApwCore getVersion],__FUNCTION__, ##__VA_ARGS__]];\
17 }\
18 }
19
20 @interface WAApwCore : WACore
21
22 +(NSString*)getVersion;
23
24 @end