iOS-StyledPageControl

Customizable PageControl for iOS

  • 所有者: php-fig/http-client
  • 平台:
  • 许可证: MIT License
  • 分类:
  • 主题:
  • 喜欢:
    0
      比较:

Github星跟踪图

Customizable PageControl for iOS

StyledPageControl is a customizable replacement for UIPageControl for iOS.

Features

  • 5 Styles
  • change colors
  • change diameter
  • change gap width
  • change stroke width
  • show current page number
  • use custom images

Usage

  1. Drag StyledPageControl.h and StyledPageControl.m into your project.

    #import StyledPageControl.h

  2. Create StyledPageControl just like a UIPageControl

    StyledPageControl *pageControl = [[StyledPageControl alloc] init];
    [self addSubview:pageControl];

  3. Set page control style

    [pageControl setPageControlStyle:PageControlStyleDefault];

  4. Set number of pages

    [pageControl setNumberOfPages:10];

  5. Set current page

    [pageControl setCurrentPage:5];

  6. Change page control colors

    [pageControl setCoreNormalColor:[UIColor colorWithRed:0 green:0 blue:0 alpha:1]];
    [pageControl setCoreSelectedColor:[UIColor colorWithRed:0.8 green:0.2 blue:0.2 alpha:1]];

  7. Change distance between dots

    [pageControl setGapWidth:5];

  8. Change dot's diameter

    [pageControl setDiameter:9];

  9. Use custom thumbnails

    [pageControl setPageControlStyle:PageControlStyleThumb];
    [pageControl setThumbImage:[UIImage imageNamed:@"pagecontrol-thumb-normal.png"]];
    [pageControl setSelectedThumbImage:[UIImage imageNamed:@"pagecontrol-thumb-selected.png"]];

Minimum Requirements

  • ARC - this project uses ARC. If you are not using ARC in your project, add '-fobjc-arc' as a compiler flag for StyledPageControl.h and StyledPageControl.m
  • XCode 4.4 and newer (auto-synthesis required)

Contact

twitter.com/honcheng
honcheng.com

主要指标

概览
名称与所有者php-fig/http-client
主编程语言PHP
编程语言Objective-C (语言数: 1)
平台
许可证MIT License
所有者活动
创建于2017-10-19 23:31:59
推送于2023-09-23 14:18:08
最后一次提交2023-09-23 16:17:50
发布数7
最新版本名称1.0.3 (发布于 2023-09-23 16:17:57)
第一版名称0.1.0 (发布于 )
用户参与
星数1.7k
关注者数14
派生数18
提交数28
已启用问题?
问题数0
打开的问题数0
拉请求数14
打开的拉请求数0
关闭的拉请求数2
项目设置
已启用Wiki?
已存档?
是复刻?
已锁定?
是镜像?
是私有?