新浪微博 有道云笔记 麦库 EverNote Pocket Instapaper 更多

UIPageControl

UIPageControl



UIPageControl
技术博客http://www.cnblogs.com/ChenYilong/ 新浪微博http://weibo.com/luohanchenyilong 
numberOfPages // 设置有多少页 默认为0
// 2) 设置页数
[pageControl
 setNumberOfPages:kImageCount];
currentPage // 设置当前页
[pageControl setCurrentPage:0];

pageIndicatorTintColor // 设置页码指示器颜色
[pageControl setPageIndicatorTintColor:[UIColor blackColor]];
currentPageIndicatorTintColor // 设置当前页码指示器颜色

[pageControl setCurrentPageIndicatorTintColor:[UIColor redColor]];

添加分页控件的监听事件(监听值改变事件)
[pageControl
 addTarget:self action:@selector(pageChanged:)forControlEvents:UIControlEventValueChanged];

效果:

 
© chenyilong. Powered by Postach.io
posted @ 2014-02-19 17:59  iTeaTime(技术清谈)  阅读(522)  评论(0编辑  收藏  举报