Code Monkey home page Code Monkey logo

circleslider's Introduction

CircleSlider

CI Status Version License Platform

Description and appetize.io`s DEMO

Usage

To run the example project, clone the repo, and run pod install from the Example directory first.

Requirements

  • iOS 8.0+
  • Xcode 7.3.1

Installation

CocoaPods(iOS 8+)

CircleSlider is available through CocoaPods. To install it, simply add the following line to your Podfile:

use_frameworks!
pod "CircleSlider"

Manual Installation

The class file required for CircleSlider is located in the Classes folder in the root of this repository as listed below:

CircleSlider.swift
TrackLayer.swift
Math.swift

Usage

To run the example project, clone the repo, and run pod install from the Example directory first.

Simple

self.circleSlider = CircleSlider(frame: self.sliderArea.bounds, options: nil)
self.circleSlider?.addTarget(self, action: Selector("valueChange:"), forControlEvents: .ValueChanged)
self.sliderArea.addSubview(self.circleSlider)

Custom

let options = [
.BarColor(UIColor(red: 198/255, green: 244/255, blue: 23/255, alpha: 0.2)),
.ThumbColor(UIColor(red: 141/255, green: 185/255, blue: 204/255, alpha: 1)),
.TrackingColor(UIColor(red: 78/255, green: 136/255, blue: 185/255, alpha: 1)),
.BarWidth(20),
.StartAngle(-45),
.MaxValue(150),
.MinValue(20)
]
self.circleSlider = CircleSlider(frame: self.sliderArea.bounds, options: options)
self.circleSlider?.addTarget(self, action: Selector("valueChange:"), forControlEvents: .ValueChanged)
self.sliderArea.addSubview(self.circleSlider)

Change options after instantiation

self.circleSlider.changeOptions([.BarWidth(45)])

Customization

  • case StartAngle(Double)
  • case BarColor(UIColor)
  • case TrackingColor(UIColor)
  • case ThumbColor(UIColor)
  • case ThumbImage(UIImage)
  • case BarWidth(CGFloat)
  • case ThumbWidth(CGFloat)
  • case MaxValue(Float)
  • case MinValue(Float)
  • case SliderEnabled(Bool)
    • If you want to use as a progress, it should be this to false
  • case ViewInset(CGFloat)
  • case MinMaxSwitchTreshold(Float)

Author

shushutochako, [email protected]

License

CircleSlider is available under the MIT license. See the LICENSE file for more info.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.