标签: ios uiscrollview uiimageview
我有一个填充屏幕的uiscrollview,底部有一个更像底部停靠栏的imageview。 现在,当用户点击底部的imageview时,它会触发scrollview上的事件,我该如何阻止它?
答案 0 :(得分:0)
将图像视图的userInteractionEnabled属性设置为true。您可以在界面构建器或代码(在viewDidLoad中)
imageView.userInteractionEnabled = YES;