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

UI<04> - UIPageControl<04>

时间:2017-04-08 13:02:32      阅读:219      评论:0      收藏:0      [点我收藏+]

标签:ica   round   gpo   change   indicator   cti   target   页码   for   

//声明对象
@property (nonatomic,strong) UIPageControl *pagecontrol;
 
 //初始化
    self.pagecontrol = [[UIPageControl alloc] init];
    self.pagecontrol.backgroundColor = [UIColor greenColor];
      
    self.pagecontrol.frame = CGRectMake(0, 0, 100, 37);
    self.pagecontrol.center = CGPointMake(self.view.frame.size.width/2.0, self.view.frame.size.height/2.0);
    //总页数
    self.pagecontrol.numberOfPages = 5;
    //当前显示页
    self.pagecontrol.currentPage = 1;
    //其他页码指示器的颜色
    self.pagecontrol.pageIndicatorTintColor = [UIColor purpleColor];
    //当前页码指示器的颜色
    self.pagecontrol.currentPageIndicatorTintColor = [UIColor redColor];
    //只有一页时,是否隐藏页码指示器
    self.pagecontrol.hidesForSinglePage = YES;
    [self.view addSubview:self.pagecontrol];
   
    //添加事件
    [self.pagecontrol addTarget:self action:@selector(click:) forControlEvents:UIControlEventValueChanged];
   

UI<04> - UIPageControl<04>

标签:ica   round   gpo   change   indicator   cti   target   页码   for   

原文地址:http://www.cnblogs.com/iQingYang/p/6681144.html

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