App Store中的截图幻灯片是如何实现的?
我非常喜欢 App Store 中应用程序信息中应用程序屏幕截图的幻灯片。有谁知道它是如何实施的?可能有一些教程或源代码可用吗?我找不到任何。
可能不完全相同,但类似的东西,用户可以在 imageView 中滑动图像会非常好,
谢谢
I really like the slideshow of application screenshots in application info in App Store. Does anyone have an idea how it is implemented? May be there are some tutorials or source code available? I could not find any.
May be not exactly the same, but something similar, where user can slide images in imageView would be very good
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
请查看本教程,使用
UIScrollView
并将pagingEnabled
设置为YES
。http://blog.proculo.de/archives/180 -Paging-enabled-UIScrollView-With-Previews.html
Check out this tutorial, using a
UIScrollView
withpagingEnabled
set toYES
.http://blog.proculo.de/archives/180-Paging-enabled-UIScrollView-With-Previews.html
在我看来,就像一个标准的 UIScrollView,将 pagingEnabled 设置为 YES,托管几个排成一行的较小的 UIImageView。
Looks to me like a standard UIScrollView, with pagingEnabled set to YES, hosting a couple of smaller UIImageViews arranged in a row.