admin
2017-12-19 aeffab067446a1bd9d0f4d968e48d15b1354a9af
commit | author | age
6e1425 1 //
H 2 //  GHWTestModeLogView.h
3 //  WASDKUI
4 //
5 //  Created by wuyx on 15/8/26.
6 //  Copyright (c) 2015年 GHW-T-01. All rights reserved.
7 //
8
9 #import <Foundation/Foundation.h>
10 #import <UIKit/UIKit.h>
11 #import <WACommon/WACommon.h>
12 @interface WASdkTestModeLogView : NSObject
13
14 +(id)shareInstance;
15 +(void)addLogWithString:(NSString*)string;
16 +(void)addLogWithoutBtn:(NSString*)string;
17 +(void)addEventContentWithString:(NSString*)string;
18 +(void)removeSuspBtn;
19 +(void)eventLog:(NSDictionary*)attributeDict str:(NSString *)format, ...;
20 +(void)eventLog:(UIColor*)color format:(NSString *)format, ...;
21 +(void)eventLog:(NSString *)format, ...;
22 @property(nonatomic,strong)NSString* log;
23 @end