forked from BB9z/RFKit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathRFPerformance.h
64 lines (45 loc) · 1.25 KB
/
RFPerformance.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
/*!
RFPerformance
RFKit
Copyright (c) 2012-2013 BB9z
https://github.com/bb9z/RFKit
The MIT License (MIT)
http://www.opensource.org/licenses/mit-license.php
*/
#import "RFRuntime.h"
#ifndef RFAlloctionLog
# define RFAlloctionLog \
+ (id)alloc {\
id var = [super alloc];\
NSLog(@"%@ alloc >> %p", [self class], var);\
return var;\
}\
- (void)dealloc {\
NSLog(@"%@ dealloc << %p", [self class], self);\
RF_DEALLOC_OBJ(super)\
}
#endif
#ifndef _RFAlloctionLog
# define _RFAlloctionLog
#endif
@interface RFPerformance : NSObject
@property(RF_STRONG, atomic) NSMutableDictionary * timeTable;
+ (RFPerformance *)sharedInstance;
/// Print menory usage details
//! via http://www.keakon.net/2011/08/12/获取iOS设备的内存状况
+ (void)logMemoryInfo;
/** @name 计时器 */
#pragma mark Timer
/** 增加给定名称的时间点
@param name Name of the time point
@return 当前时间
*/
- (time_t)addTimePoint:(NSString *)name;
/** 返回两个时间点间的时间差
参数不分先后
@param name1 一个点的名字
@param name2 另一点的名字
@return 两点间时间差,单位秒
*/
- (float)timeBetween:(NSString *)name1 another:(NSString *)name2;
@end