Files
CustomPlugin/Libs/iflyMSC.framework/Headers/IFlyDebugLog.h
2023-04-10 18:48:16 +08:00

38 lines
611 B
Objective-C
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

//
// 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