IOS分页控制器 - UIPageControl

UIPageControl

UIPageControl使用的场景十分多,例如:app的引导页面,广播轮播页面等。UIPageControl是用于页码管理器的UI控件,其表现的形式是一行亮白色的圆点。
使用Xcode创建一个项目,具体Demo如下:

#import "ViewController.h"

@interface ViewController ()

@end

@implementation ViewController

- (void)viewDidLoad {
    [super viewDidLoad];
   //创建一个实例
    UIPageControl *page = [[UIPageControl alloc]initWithFrame:CGRectMake(40, 200, 300, 100)];
    page.currentPageIndicatorTintColor = [UIColor whiteColor];
    [page addTarget:self action:@selector(changeNum:) forControlEvents:UIControlEventTouchUpInside];
    page.numberOfPages = 10;
    [self.view setBackgroundColor:[UIColor blackColor]];
    [self.view addSubview:page];
}


- (void)changeNum:(UIPageControl *)page{
    NSLog(@"%lu",page.currentPage);
}
- (void)didReceiveMemoryWarning {
    [super didReceiveMemoryWarning];
    // Dispose of any resources that can be recreated.
}


@end

swift 代码如下


class ViewController: UIViewController {


    override func viewDidLoad() {
        super.viewDidLoad()
        let page = UIPageControl(frame: CGRect(x: 40, y: 200, width: 300, height: 100))
        page.numberOfPages = 10 //10个点
        page.addTarget(self, action:#selector(changeNum), for: .touchUpInside)
        self.view.backgroundColor = UIColor.black;
        self.view.addSubview(page)
    }

    func changeNum(page:UIPageControl){
        print(page.currentPage);
    }
    override func didReceiveMemoryWarning() {
        super.didReceiveMemoryWarning()
        // Dispose of any resources that can be recreated.
    }


}

结果
这里写图片描述

  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值