zoukankan      html  css  js  c++  java
  • UI<04>

    //声明对象
    @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];
       

  • 相关阅读:
    celery worker的工作模式
    动态加载js
    PHP加密解密
    js加载div, 元素事件不生效问题
    任意页面加载聊天框组件(也可用于其他)
    重装系统
    vue 跨域问题
    859. Buddy Strings
    316. Remove Duplicate Letters
    654. Maximum Binary Tree
  • 原文地址:https://www.cnblogs.com/iQingYang/p/6681144.html
Copyright © 2011-2022 走看看