MOBFDebug.h 560 B

1234567891011121314151617181920212223242526272829303132
  1. //
  2. // MOBFDebug.h
  3. // MOBFoundation
  4. //
  5. // Created by 冯 鸿杰 on 15/2/4.
  6. // Copyright (c) 2015年 MOB. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. /**
  10. * 调试工具类
  11. */
  12. @interface MOBFDebug : NSObject
  13. /**
  14. * 输出调试日志
  15. *
  16. * @param format 日志格式
  17. * @param ... 日志参数
  18. */
  19. + (void)log:(NSString *)format, ... NS_FORMAT_FUNCTION(1, 2);
  20. /**
  21. * 观察释放对象,指定类型的被释放对象会打印在Console中。
  22. *
  23. * @param type 对象类型
  24. */
  25. + (void)watchDeallocObjectWithType:(Class)type;
  26. @end