You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

32 lines
560 B

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