如何复制这个 UIPageControl 外观?
我想在此应用程序中复制此视图的功能。
它的底部有一个 UIPageControl,有 3 个视图,仅更改底部的视图,而不更改整个视图。
关于如何实现这一目标有什么基本建议吗?
I want to replicate the functionality of this view in this app.
It has a UIPageControl at the bottom with 3 views that only changes the view at the bottom, and not the whole view.
Any basic advice on how to accomplish this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
好吧,UIPageControl 只是发送事件通知您更改页面...
我会将底部视图放置在 UIScrollView 中(该视图又包含您想要交替的 3 个视图),当用户单击 UIPageControl 时,您将设置UIScrollView 的 contentOffset。
有道理吗?
Well, UIPageControl simply sends events informing you to change a page...
I would place the bottom view in a UIScrollView (that in turn would contain the 3 views you want to alternate), and when the user clicks the UIPageControl, you would set the contentOffset of the UIScrollView.
Makes sense?