码迷,mamicode.com
首页 > 其他好文 > 详细

UIPageControl

时间:2016-01-02 22:11:36      阅读:741      评论:0      收藏:0      [点我收藏+]

标签:

UIPageControl用于显示滑动视图实际拥有的页数

UIPageControl *page = [[UIPageControl alloc] initWithFrame:CGRectMake(100, 100, 100, 30);

page.background = [UIColor redColor];

page.numberOfPages = 5;  //设置拥有的页数

page.currentPage = 2; //设置当前显示第几个点

page.pageIndicatorTintColor = [UIColor redColor];  //设置当前选中的点的颜色.

[page addTarget:self action:@selector(handlePageControl:) forControlEvent:UIControlEventValueChanged]; //添加点击事件

UIPageControl

标签:

原文地址:http://www.cnblogs.com/lion-witcher/p/5095195.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!