Outlet Collections中的gestureRecognizers
是该视图的手势识别器的出口,而不是其手势识别器的动作。
您需要做的是通过从Object Library
拖动一个手势识别器并添加其动作
来为图像视图添加手势识别器
您可以像这样拖动手势:
-
将TapGesture识别器拖到故事板中的ViewController:
-
您应该在ViewController.m中编写IBAction
方法:
醇>
```
-(IBAction)tapGesture:(id)sender {
}
```
-
将TapGesture Recognizer拖到ViewController,然后选择委托和tapGesture:
方法:
-
然后您可以将imageView的gestureRecognizers拖动到手势:
醇>
您在ViewController.m中编写的函数就是您想要的。