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

UIPageControl---iOS-Apple苹果官方文档翻译

本系列所有开发文档翻译链接地址:iOS7开发-Apple苹果iPhone开发Xcode官方文档翻译PDF下载地址

//转载请注明出处--本文永久链接:http://www.cnblogs.com/ChenYilong/p/3495907.html

UIPageControl.docx
416.8 KB
UIPageControl.pdf
443.8 KB

 

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];

效果:
pastedGraphic.png
 

 

 //转载请注明出处--本文永久链接:http://www.cnblogs.com/ChenYilong/p/3495907.html

本文对应pdf文档下载链接,猛戳—>: https://www.evernote.com/shard/s227/sh/268e26b6-18e7-4403-a028-c258b8292d98/9e5fa5acf7486779f4992c5c19311796

本系列所有开发文档翻译链接地址:iOS7开发-Apple苹果iPhone开发Xcode官方文档翻译PDF下载地址


posted @ 2013-12-28 22:56  iTeaTime(技术清谈)  阅读(561)  评论(0编辑  收藏  举报