子类化 UIPageControl
我有图像,但如何重绘 UIPageControl 来使用这些图像?
I have my images, but how do I redraw the UIPageControl to use these images?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
我有图像,但如何重绘 UIPageControl 来使用这些图像?
I have my images, but how do I redraw the UIPageControl to use these images?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(2)
UIPageControl 不会为您管理任何视图。这是一个非常基本的控件,仅显示点。您可以自行实现“页面”视图并使用“滑动”手势或您想要的方式在它们之间导航。
有关如何组合UIPageControl 具有两个 UIView 在多个页面之间导航。
(直接解决问题的标题 - 您没有子类 UIPageControl)
The UIPageControl does not manage any views for you. It is a very basic control that just displays the dots. It is up to you to implement your 'page' views and navigate between them using 'swipe' gestures or however you want to do it.
See this tutorial for information on how to combine a UIPageControl with two UIViews to navigate between multiple pages.
(To directly address the title of your question - you do not subclass UIPageControl)
请参阅从一个视图切换到下一个视图
Apple 还提供了您可以使用的示例代码。
See Swip from one view to the next view
Apple also has sample code you can use.