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?
已存檔?
是復刻?
已鎖定?
是鏡像?
是私有?