UIButton 位于 UIScrollView 不可见区域
如何获得位于 UIScrollView 中但最初不可见区域的按钮的点击按钮?
已解决
问题是内容在非剪辑视图中可见 - 因此无法触摸。
How can I get a button tap for a button which is located in a UIScrollView, but in its initially non-visible area?
Solved
Problem was that the content was visible within a non-clipped view - therefore not getting touches.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我认为你应该向 UIButton 添加一个操作(下面代码中的 yourAction )。
以编程方式:
使用 gui 构建器,您应该将 UIButton 连接到 .h 控制器文件中定义为 IBAction 的操作:
I think you should add an action (yourAction in the code below) to the UIButton.
programmatically:
With the gui builder you should connect your UIButton to an action defined as IBAction in your .h controller file: