如何知道UIScrollView显示了哪个UIView索引或标签?
我有一个 UIScrollView
,其中有很多标记图像。
用户在 UIScrollView
中选择特定图像后,我必须处理一些代码。要执行此过程,我需要知道当用户选择它时显示哪个图像或视图 UIScrollView
。
我尝试跟踪子视图的frame.origin.x
,但没有成功。
大家能分享一下这种情况吗?
I have an UIScrollView
with lots of tagged images.
I have to process some code after the user selects a specific image inside the UIScrollView
. To do this process I need to know which image or view UIScrollView
was showing when the user selected it.
I tried tracking the frame.origin.x
of my subviews, but without success.
Can you guys share something about this situation?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
滚动视图的
边界
的原点决定了可见区域。The origin of the scrollview's
bounds
determine the visible area.