Authored by 于良

移除load方法 review by 孙凯

... ... @@ -10,4 +10,6 @@
@interface UIImageView (GestureAutoTrack)
+ (void)startTrack;
@end
... ...
... ... @@ -18,7 +18,7 @@
@implementation UIImageView (GestureAutoTrack)
+ (void)load {
+ (void)startTrack {
static dispatch_once_t onceToken;
dispatch_once(&onceToken, ^{
@try {
... ...
... ... @@ -10,4 +10,6 @@
@interface UILabel (GestureAutoTrack)
+ (void)startTrack;
@end
... ...
... ... @@ -18,7 +18,7 @@
@implementation UILabel (GestureAutoTrack)
+ (void)load {
+ (void)startTrack {
static dispatch_once_t onceToken;
dispatch_once(&onceToken, ^{
@try {
... ...