SMPageControl

A drop in replacement for UIPageControl with a slew of additional customization options.

  • Owner: Spaceman-Labs/SMPageControl
  • Platform:
  • License:: MIT License
  • Category::
  • Topic:
  • Like:
    0
      Compare:

Github stars Tracking Chart

SMPageControl

UIPageControl’s Fancy One-Upping Cousin.

Designers love to make beautifully custom page controls that fit in with all the wood, gradients, and inner shadows they've worked so hard perfecting.

Who can blame them?! SMPageControl makes it dead simple to give them what they want. Even better, SMPageControl is a drop in replacement for UIPageControl. It mirrors all the functions of UIPageControl, with literally no changes beyond the class name.

Apps Currently Using SMPageControl

Using SMPageControl in your application? Let us know, and we'll add your app the list of apps! mailto:spaceman@spacemanlabs.com

Moar Customization!

SMPageControl has a variety of simple (yet powerful) areas of customization, and most all of them support the UIAppearance Proxy available to iOS 5.0 and newer.

  • Indicator Size
  • Indicator Spacing
  • Indicator Alignment
  • Images as Indicators
  • Image Masks as Indicators
  • Per-Indicator Customization
  • Directly Tappable Indicators
  • Extensive Support for UIAppearance
  • Extended Support for UIAccessibility
  • iOS 7 Ready

Screenshot Screenshot

Example Usage

SMPageControl *pageControl = [[SMPageControl alloc] init];
pageControl.numberOfPages = 10;
pageControl.pageIndicatorImage = [UIImage imageNamed:@"pageDot"];
pageControl.currentPageIndicatorImage = [UIImage imageNamed:@"currentPageDot"];
[pageControl sizeToFit];
[self.view addSubview:pageControl];

Direct Page Selection

Because SMPageControl has such a high degree of flexibility, it's not uncommon for indicator images to be large enough to tap directly. The tapBehavior property allows the page control indicators to be individually tappable.

SMPageControl *pageControl = [[SMPageControl alloc] init];
pageControl.tapBehavior = SMPageControlTapBehaviorJump;

UIAccessibility Additions

UIPageControl (like all Apple controls) provides out of the box support for UIAccessibility. The default behavior is to set the accessibility value to "page [current page + 1] of [number of pages]". e.g. "page 1 of 10"

SMPageControl provides the exact same functionality, but also allows you to name individual pages. This is extremely useful when using per page indicator images, where one or more page is likely to have a specific usage that is identifiable to the user.

SMPageControl *pageControl = [[SMPageControl alloc] init];
[pageControl setImage:[UIImage imageNamed:@"searchDot"] forPage:0];
[pageControl setCurrentImage:[UIImage imageNamed:@"currentSearchDot"] forPage:0];
[pageControl setImage:[UIImage imageNamed:@"appleDot"] forPage:1];
[pageControl setCurrentImage:[UIImage imageNamed:@"currentAppleDot"] forPage:1];
[pageControl setName:@"Search" forPage:0];
[pageControl setName:@"Apple" forPage:1];

Screenshot

More Info

The original blog post for this project can be found here.

LICENSE

Copyright (C) 2012 by Spaceman Labs

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.

Main metrics

Overview
Name With OwnerSpaceman-Labs/SMPageControl
Primary LanguageObjective-C
Program languageObjective-C (Language Count: 2)
Platform
License:MIT License
所有者活动
Created At2012-10-14 02:29:54
Pushed At2019-07-07 11:55:33
Last Commit At2013-12-13 08:22:22
Release Count3
Last Release Name1.2 (Posted on )
First Release Name1.0 (Posted on )
用户参与
Stargazers Count1.9k
Watchers Count94
Fork Count217
Commits Count69
Has Issues Enabled
Issues Count15
Issue Open Count9
Pull Requests Count8
Pull Requests Open Count7
Pull Requests Close Count5
项目设置
Has Wiki Enabled
Is Archived
Is Fork
Is Locked
Is Mirror
Is Private