在 ios 5 模拟器中使用时如何更改 UIPageControl 的颜色
Posted
技术标签:
【中文标题】在 ios 5 模拟器中使用时如何更改 UIPageControl 的颜色【英文标题】:How to change the colour of the UIPageControl when used in ios 5 simulator 【发布时间】:2013-01-31 09:13:16 【问题描述】:我在我的应用程序中使用以下代码:-
在.h文件中
@property (strong, nonatomic) IBOutlet UIPageControl *pageControl;
在.m文件中
pageControl.currentPage = counting;
计数是NSInteger
。该应用程序工作正常,但UIPageControl
设置为默认白色,我无法通过属性检查器更改颜色
有人可以帮忙吗?...
【问题讨论】:
【参考方案1】:在 ios 6 中,您可以这样做:
pageControl.pageIndicatorTintColor = [UIColor blueColor];
pageControl.currentPageIndicatorTintColor = [UIColor greenColor];
【讨论】:
【参考方案2】:类似如下。
How can i change the color of pagination dots of UIPageControl?
我认为页面控制器没有属性可以更改点颜色
【讨论】:
以上是关于在 ios 5 模拟器中使用时如何更改 UIPageControl 的颜色的主要内容,如果未能解决你的问题,请参考以下文章
如何在 iOS 模拟器上使用某种语言键盘启动 Appium 测试
当 ObservedObject 在其他类中发生更改时如何在 ContentView 中运行方法 [Swift 5 iOS 13.4]