Authored by 于良

移除load方法 review by 孙凯

@@ -10,4 +10,6 @@ @@ -10,4 +10,6 @@
10 10
11 @interface UIImageView (GestureAutoTrack) 11 @interface UIImageView (GestureAutoTrack)
12 12
  13 ++ (void)startTrack;
  14 +
13 @end 15 @end
@@ -18,7 +18,7 @@ @@ -18,7 +18,7 @@
18 18
19 @implementation UIImageView (GestureAutoTrack) 19 @implementation UIImageView (GestureAutoTrack)
20 20
21 -+ (void)load { 21 ++ (void)startTrack {
22 static dispatch_once_t onceToken; 22 static dispatch_once_t onceToken;
23 dispatch_once(&onceToken, ^{ 23 dispatch_once(&onceToken, ^{
24 @try { 24 @try {
@@ -10,4 +10,6 @@ @@ -10,4 +10,6 @@
10 10
11 @interface UILabel (GestureAutoTrack) 11 @interface UILabel (GestureAutoTrack)
12 12
  13 ++ (void)startTrack;
  14 +
13 @end 15 @end
@@ -18,7 +18,7 @@ @@ -18,7 +18,7 @@
18 18
19 @implementation UILabel (GestureAutoTrack) 19 @implementation UILabel (GestureAutoTrack)
20 20
21 -+ (void)load { 21 ++ (void)startTrack {
22 static dispatch_once_t onceToken; 22 static dispatch_once_t onceToken;
23 dispatch_once(&onceToken, ^{ 23 dispatch_once(&onceToken, ^{
24 @try { 24 @try {