feat: 自定义的插件

This commit is contained in:
zoujing
2023-04-10 18:48:16 +08:00
commit e1795f2de2
621 changed files with 18614 additions and 0 deletions

View File

@@ -0,0 +1,37 @@
//
// IFlyDebugLog.h
// MSC
// description: 程序中的log处理类
// Created by ypzhao on 12-11-22.
// Copyright (c) 2012年 iflytek. All rights reserved.
//
#import <Foundation/Foundation.h>
/*!
* 调试信息
*/
@interface IFlyDebugLog : NSObject
/*!
* 打印调试信息
*
* @param format -[in] 要打印的内容格式
* @param ... -[in] 要打印的内容
*/
+ (void) showLog:(NSString *)format, ...;
/*!
* 将log写入文件中
*/
+ (void) writeLog;
/*!
* 设置是否显示log
*
* @param showLog YES:显示NO:不显示
*/
+ (void) setShowLog:(BOOL) showLog;
@end