Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/yannickl/SnappingStepper
An elegant alternative to the UIStepper written in Swift
https://github.com/yannickl/SnappingStepper
Last synced: 5 days ago
JSON representation
An elegant alternative to the UIStepper written in Swift
- Host: GitHub
- URL: https://github.com/yannickl/SnappingStepper
- Owner: yannickl
- License: mit
- Created: 2015-05-02T14:09:06.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2020-08-20T06:18:43.000Z (over 4 years ago)
- Last Synced: 2024-11-25T00:37:08.296Z (17 days ago)
- Language: Swift
- Homepage: http://cocoadocs.org/docsets/SnappingStepper
- Size: 156 KB
- Stars: 428
- Watchers: 9
- Forks: 31
- Open Issues: 9
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
- awesome-ios - SnappingStepper - An elegant alternative to the UIStepper written in Swift (UI / Stepper)
- awesome-ios-star - SnappingStepper - An elegant alternative to the UIStepper written in Swift (UI / Stepper)
README
[![License](https://cocoapod-badges.herokuapp.com/l/SnappingStepper/badge.svg)](http://cocoadocs.org/docsets/SnappingStepper/) [![Supported Plateforms](https://cocoapod-badges.herokuapp.com/p/SnappingStepper/badge.svg)](http://cocoadocs.org/docsets/SnappingStepper/) [![Version](https://cocoapod-badges.herokuapp.com/v/SnappingStepper/badge.svg)](http://cocoadocs.org/docsets/SnappingStepper/) [![Carthage compatible](https://img.shields.io/badge/Carthage-compatible-4BC51D.svg?style=flat)](https://github.com/Carthage/Carthage)
[![Build Status](https://travis-ci.org/yannickl/SnappingStepper.svg?branch=master)](https://travis-ci.org/yannickl/SnappingStepper) [![codecov.io](http://codecov.io/github/yannickl/SnappingStepper/coverage.svg?branch=master)](http://codecov.io/github/yannickl/SnappingStepper?branch=master) [![codebeat badge](https://codebeat.co/badges/da2160dc-b263-42e7-b65e-ae39dc41cda8)](https://codebeat.co/projects/github-com-yannickl-snappingstepper)An elegant alternative to the `UIStepper` in Swift with a thumb slider addition to control the value update with more flexibility.
# Usage
```swift
let stepper = SnappingStepper(frame: CGRect(x: 0, y: 0, width: 100, height: 40))// Configure the stepper like any other UIStepper. For example:
//
// stepper.continuous = true
// stepper.autorepeat = true
// stepper.wraps = false
// stepper.minimumValue = 0
// stepper.maximumValue = 100
// stepper.stepValue = 1stepper.symbolFont = UIFont(name: "TrebuchetMS-Bold", size: 20)
stepper.symbolFontColor = .black
stepper.backgroundColor = UIColor(hex: 0xc0392b)
stepper.thumbWidthRatio = 0.5
stepper.thumbText = ""
stepper.thumbFont = UIFont(name: "TrebuchetMS-Bold", size: 20)
stepper.thumbBackgroundColor = UIColor(hex: 0xe74c3c)
stepper.thumbTextColor = .blackstepper.addTarget(self, action: "valueChanged:", forControlEvents: .valueChanged)
// If you don't want using the traditional `addTarget:action:` pattern you can use
// the `valueChangedBlock`
// snappingStepper.valueChangeBlock = { (value: Double) in
// println("value: \(value)")
// }func valueChanged(sender: AnyObject) {
// Retrieve the value: stepper.value
}
```To go further, take a look at the example project.
# Installation
## CocoaPods
Install CocoaPods if not already available:
``` bash
$ [sudo] gem install cocoapods
$ pod setup
```
Go to the directory of your Xcode project, and Create and Edit your Podfile and add _SnappingStepper_:``` bash
$ cd /path/to/MyProject
$ touch Podfile
$ edit Podfile
source 'https://github.com/CocoaPods/Specs.git'
platform :ios, '8.0'use_frameworks!
pod 'SnappingStepper', '~> 3.0.0'
```Install into your project:
``` bash
$ pod install
```Open your project in Xcode from the .xcworkspace file (not the usual project file):
``` bash
$ open MyProject.xcworkspace
```You can now `import SnappingStepper` framework into your files.
## Carthage
[Carthage](https://github.com/Carthage/Carthage) is a decentralized dependency manager that automates the process of adding frameworks to your Cocoa application.
You can install Carthage with [Homebrew](http://brew.sh/) using the following command:
```bash
$ brew update
$ brew install carthage
```To integrate `SnappingStepper` into your Xcode project using Carthage, specify it in your `Cartfile` file:
```ogdl
github "yannickl/SnappingStepper" >= 3.0.0
```## Swift Package Manager
You can use [The Swift Package Manager](https://swift.org/package-manager) to install `SnappingStepper` by adding the proper description to your `Package.swift` file:```swift
import PackageDescriptionlet package = Package(
name: "YOUR_PROJECT_NAME",
targets: [],
dependencies: [
.Package(url: "https://github.com/yannickl/SnappingStepper.git", versions: "3.0.0" ..< Version.max)
]
)
```Note that the [Swift Package Manager](https://swift.org/package-manager) (SPM) is still in early design and development, for more infomation checkout its [GitHub Page](https://github.com/apple/swift-package-manager).
## Manually
[Download](https://github.com/YannickL/SnappingStepper/archive/master.zip) the project and copy the `SnappingStepper` folder into your project to use it in.
## Contribution
Contributions are welcomed and encouraged *♡*.
# Contact
Yannick Loriot
- [https://21.co/yannickl/](https://21.co/yannickl/)
- [https://twitter.com/yannickloriot](https://twitter.com/yannickloriot)# License (MIT)
Copyright (c) 2015-present - Yannick Loriot
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.