Files
OrderScheduling/Pods/CocoaDebug/Sources/Logs/CocoaDebugTool.h
DDIsFriend 63ca919ed5 update
2023-08-23 09:24:40 +08:00

32 lines
834 B
Objective-C

//
// CocoaDebugTool.h
// Example_Swift
//
// Created by man 5/8/19.
// Copyright © 2020 man. All rights reserved.
//
#import <Foundation/Foundation.h>
#import <UIKit/UIKit.h>
@interface CocoaDebugTool : NSObject
/// log with string,
/// default color is white
+ (void)logWithString:(NSString *)string;
+ (void)logWithString:(NSString *)string color:(UIColor *)color;
/// log with JSON Data,
/// default color is white,
/// return string
+ (NSString *)logWithJsonData:(NSData *)data;
+ (NSString *)logWithJsonData:(NSData *)data color:(UIColor *)color;
/// log with Protobuf Data,
/// default color is white,
/// return string
//+ (NSString *)logWithProtobufData:(NSData *)data className:(NSString *)className;
//+ (NSString *)logWithProtobufData:(NSData *)data className:(NSString *)className color:(UIColor *)color;
@end