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,31 @@
//
// 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