我有一个搜索按钮,onClick打开覆盖大部分屏幕的UIView
(就像UIAlertView
)。 UIView
第一个元素是UIImageView
2 UITextView
和关闭UIButton
,我现在要添加的是一个手势识别器,其工作原理如下:
当用户向下拖动UIImageView
时,它也会拖动UIView
并关闭它。
我尝试使用以下代码来检测滑动手势:
UISwipeGestureRecognizer *swipeGesture = [[UISwipeGestureRecognizer alloc] initWithTarget:self action:@selector(swipeToDoMethod)];
[swipeGesture setDirection:UISwipeGestureRecognizerDirectionDown];
[[self popupImage] addGestureRecognizer: swipeGesture];
但我不知道如何继续这样做,有人能指出我正确的方向,以重现我想要的效果吗?
答案 0 :(得分:0)
缺少代表:</ p>
....
[swipeGesture setDirection:UISwipeGestureRecognizerDirectionDown];
swipeGesture.delegate=self;
....