Просмотр исходного кода

修复sort image点击无响应

Pen Li 9 лет назад
Родитель
Сommit
338a2229ab

BIN
RedAnt ERP Mobile/RedAnt ERP Mobile.xcworkspace/xcuserdata/macmini1.xcuserdatad/UserInterfaceState.xcuserstate


+ 7 - 0
RedAnt ERP Mobile/iSales-NPD/SortButton.m

@@ -48,6 +48,9 @@
         _imageView.image = [UIImage imageNamed:@"DX_22"];
         
         _imageView.userInteractionEnabled = YES;
+        
+        UITapGestureRecognizer *tap = [[UITapGestureRecognizer alloc] initWithTarget:self action:@selector(clickImageView:)];
+        [_imageView addGestureRecognizer:tap];
     }
     return _imageView;
 }
@@ -63,4 +66,8 @@
     return resSize;
 }
 
+- (void)clickImageView:(id)recognizer {
+    [self sendActionsForControlEvents:UIControlEventTouchUpInside];
+}
+
 @end