commit | author | age
|
85c9ff
|
1 |
// |
H |
2 |
// WAWechatCore.h |
|
3 |
// WAWechatImplUI |
|
4 |
// |
|
5 |
// Created by hank on 2016/11/23. |
|
6 |
// Copyright © 2016年 hank. All rights reserved. |
|
7 |
// |
|
8 |
|
|
9 |
#import <WASdkIntf/WASdkIntf.h> |
|
10 |
|
|
11 |
@class WACoreProxy; |
|
12 |
@class WAWechatCore; |
|
13 |
|
|
14 |
#define WechatLog(fmt,...) {\ |
|
15 |
if([WACoreProxy isDebugMode]){\ |
|
16 |
NSLog((@"WASDK LOG [(version %@) %s ]:" fmt), [WAWechatCore getVersion],__FUNCTION__, ##__VA_ARGS__);\ |
|
17 |
[WACoreProxy addLogWithString:[NSString stringWithFormat:(@"(version %@) %s ]:" fmt),[WAWechatCore getVersion],__FUNCTION__, ##__VA_ARGS__]];\ |
|
18 |
}\ |
|
19 |
} |
|
20 |
|
|
21 |
@interface WAWechatCore : WACore |
|
22 |
|
|
23 |
+(NSString*)getVersion; |
|
24 |
|
|
25 |
@end |