本文主要是介绍UIPageControl的使用,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
-
创建UIPageControl对象.
@property(nonatomic,strong) UIPageControl *pageCtrl;
self.pageCtrl = [[UIPageControl alloc] initWithFrame:CGRectMake(x,y, w, h)];
-
设置页码的个数.
self.pageCtrl.numberOfPages = 10;
-
设置页码的颜色.
self.pageCtrl.pageIndicatorTintColor = [UIColor greenColor];
-
设置当前页码的颜色.
self.pageCtrl.currentPageIndicatorTintColor = [UIColor yellowColor];
-
将UIPageControl对象添加到视图.
[self.view insertSubview:self.pageCtrl aboveSubview:self.scrollView];
这篇关于UIPageControl的使用的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!