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

32 lines
560 B
Objective-C
Executable File
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.

//
// MOBFDebug.h
// MOBFoundation
//
// Created by 冯 鸿杰 on 15/2/4.
// Copyright (c) 2015年 MOB. All rights reserved.
//
#import <Foundation/Foundation.h>
/**
* 调试工具类
*/
@interface MOBFDebug : NSObject
/**
* 输出调试日志
*
* @param format 日志格式
* @param ... 日志参数
*/
+ (void)log:(NSString *)format, ... NS_FORMAT_FUNCTION(1, 2);
/**
* 观察释放对象指定类型的被释放对象会打印在Console中。
*
* @param type 对象类型
*/
+ (void)watchDeallocObjectWithType:(Class)type;
@end