lpw
2021-02-02 4ae86a682de87b00d87eb2783b51b2d0f844a798
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