如何更改 UIPageControl 点
我见过一些应用程序(例如 meebo)在 UIPageControls 上有不同的指示符,而不是默认的白色圆圈。
有一个简单的方法可以做到这一点吗?我已阅读 UIPageControls 的文档,似乎没有方法可以替换图像。
I've seen apps (e.g. meebo) that have different indicators on UIPageControls instead of the default white circles.
is there an easy way to do this? I've read the docs for UIPageControls and it seems that there is no methods to replace the images.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以通过执行以下步骤来实现此目的:
1- 创建一个继承自 UIPageControl 的自定义类。
2- 将此类分配给您想要更改其点的所需 UIPageControl。
3- 将以下代码放入您的自定义 UIPageControl 类中。
将其放入 customClass.m 文件中:
将其放入 customClass.h 文件中
5- 只需使用以下行将 UIPageControl 的当前页面设置在将页面控件放入其中的类中:
记住将当前页面设置为UIPageControl 视图中的 viewDidLoad() 方法位于其中。
当视图加载时,UIPageControl 图像将被设置。
You can achieve this by making the following steps:
1- Create a custom class that inherits from UIPageControl.
2- Assign this class to the required UIPageControl that you want to change its dots.
3- Put the following code inside your custom UIPageControl class.
Put this in the customClass.m file:
Put this in the customClass.h file
5- Just set the current page of your UIPageControl in the class that you put the page control inside it using the following line:
remember to set the current page in the viewDidLoad() method in the view of that UIPageControl is inside it.
When the view loaded the UIPageControl images will be set.
没有公共 API 可以更改图像。您可以查看 这篇博文,描述了自定义 UIPageControl。
There is not public API to change the images. You can take a look at this blog post, that describes a method to customize the UIPageControl.