Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

https://github.com/kciter/HorizontalDial

A horizontal scroll dial like Instagram.
https://github.com/kciter/HorizontalDial

Last synced: about 2 months ago
JSON representation

A horizontal scroll dial like Instagram.

Lists

README

        

# HorizontalDial
![Swift 5.0](https://img.shields.io/badge/Swift-5.0-orange.svg)
[![Version](https://img.shields.io/cocoapods/v/HorizontalDial.svg?style=flat)](http://cocoapods.org/pods/kchorizontaldial)
[![License](https://img.shields.io/cocoapods/l/HorizontalDial.svg?style=flat)](http://cocoapods.org/pods/kchorizontaldial)
[![Platform](https://img.shields.io/cocoapods/p/HorizontalDial.svg?style=flat)](http://cocoapods.org/pods/kchorizontaldial)

## Preview
Preview gif

## Requirements
* iOS 8.0+
* Swift 5

## Storyboard support
Storyboard Screenshot

## Installation

### CocoaPods
```ruby
use_frameworks!
pod "HorizontalDial"
```
### Manually
To install manually the HorizontalDial in an app, just drag the `HorizontalDial.swift` file into your project.

## Properties
| Property | Type | Description |
|---|---|---|
|`enableRange` | `Bool` | Use range mode |
|`minimumValue` | `Double` | Acceptable minimum value |
|`maximumValue` | `Double` | Acceptable maximum value |
|`value` | `Double` | Value |
|`tick` | `Double` | Increase value |
|`centerMarkColor` | `UIColor` | Set center mark color |
|`centerMarkWidth` | `CGFloat` | Set center mark width |
|`centerMarkHeightRatio` | `CGFloat` | Set center mark height |
|`centerMarkRadius` | `CGFloat` | Set center mark radius |
|`markColor` | `UIColor` | Set mark color |
|`markWidth` | `CGFloat` | Set mark width |
|`markRadius` | `CGFloat` | Set mark radius |
|`markCount` | `Int` | The number of mark in view |
|`padding` | `Double` | Vertical offset from bottom in landscape mode |
|`verticalAlign` | `String` | Vertical Align as `top`, `middle`, `bottom` |
|`lock` | `Bool` | User input lock |

## Protocols
| Protocol | Description |
|---|---|
|`horizontalDialWillBeginScroll(horizontalDial: HorizontalDial)` | This method is called whenever the HorizontalDial will begin an animated scroll. |
|`horizontalDialDidEndScroll(horizontalDial: HorizontalDial)` | This method is called whenever the HorizontalDial will ends an animated scroll. |
|`horizontalDialWillValueChanged(horizontalDial: HorizontalDial)` | This method is called whenever the HorizontalDial will value changed. |
|`horizontalDialDidValueChanged(horizontalDial: HorizontalDial)` | This method is called whenever the HorizontalDial did value changed. |

## TODO
* Code refactoring
* Optimizing UI performance
* Add `clipsToRange` property
* Add `unit` property

## Donate
If you like this open source, you can sponsor it. :smile:

[Paypal me](https://paypal.me/kciter)

## License
The MIT License (MIT)

Copyright (c) 2015 Lee Sun-Hyoup

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.