如何检查 iPhone 中当前是否正在显示某个视图?
我有一个滚动视图,显示不同的 uiimageviews,并且一次仅显示一个(它会捕捉,因此始终只显示一个)。我如何检查正在显示的是哪一个?像...之类的东西
if(imgView.bounds == self.view.bounds)
?
I've got a scroll view that shows different uiimageviews, and only one is shown at a time (it snaps so there's always only one showing). How can I check which one is being shown? something like...
if(imgView.bounds == self.view.bounds)
?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
也许
(假设
scrollView
是你的 UIScrollView)Maybe
(assuming
scrollView
is your UIScrollView)