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
| //
| // WAWechatCore.h
| // WAWechatImplUI
| //
| // Created by hank on 2016/11/23.
| // Copyright © 2016年 hank. All rights reserved.
| //
|
| #import <WASdkIntf/WASdkIntf.h>
|
| @class WACoreProxy;
| @class WAWechatCore;
|
| #define WechatLog(fmt,...) {\
| if([WACoreProxy isDebugMode]){\
| NSLog((@"WASDK LOG [(version %@) %s ]:" fmt), [WAWechatCore getVersion],__FUNCTION__, ##__VA_ARGS__);\
| [WACoreProxy addLogWithString:[NSString stringWithFormat:(@"(version %@) %s ]:" fmt),[WAWechatCore getVersion],__FUNCTION__, ##__VA_ARGS__]];\
| }\
| }
|
| @interface WAWechatCore : WACore
|
| +(NSString*)getVersion;
|
| @end
|
|