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

UIPageControl 的用法

时间:2015-08-27 11:23:27      阅读:147      评论:0      收藏:0      [点我收藏+]

标签:



会自动生成frame,可以设置其中心点center 来布局

@property(nonatomic) NSInteger numberOfPages;         
@property(nonatomic) NSInteger currentPage;

设置页数通过numberOfPages属性设置,

currentPage 当前选中页面

currentPageIndicatorTintColor 当前页的圆点颜色

pageIndicatorTintColor 非当前页面圆点颜色



UIPageControl 的示例代码

    UIPageControl *pageControl = [[UIPageControl alloc] init];
    pageControl.numberOfPages = 3;
    pageControl.centerX = self.view.width * 0.5;
    pageControl.centerY = self.view.height - 30;
    [self.view addSubview:pageControl];

    // 2.设置圆点的颜色
    pageControl.currentPageIndicatorTintColor = [UIColor orangeColor]; // 当前页的小圆点颜色
    pageControl.pageIndicatorTintColor = [UIColor lightGrayColor]; // 非当前页的小圆点颜色


UIPageControl 的用法

标签:

原文地址:http://my.oschina.net/u/2360054/blog/497737

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