SectionedSlider alternatives and similar libraries
Based on the "Slider" category.
Alternatively, view SectionedSlider alternatives based on common mentions on social networks and blogs.
-
HGCircularSlider
A custom reusable circular / progress slider control for iOS application. -
ASValueTrackingSlider
A UISlider subclass that displays the slider value in a popup view -
Fluid Slider
:octocat:💧 A slider widget with a popup bubble displaying the precise value selected. Swift UI library made by @Ramotion -
TTRangeSlider
A slider, similar in style to UISlider, but which allows you to pick a minimum and maximum range. -
RangeSeekSlider
RangeSeedSlider provides a customizable range slider like a UISlider. -
AGCircularPicker
AGCircularPicker is helpful component for creating a controller aimed to manage any calculated parameter -
StepSlider
StepSlider its custom implementation of slider such as UISlider for preset integer values. -
MultiSlider
UISlider clone with multiple thumbs and values, range highlight, optional snap intervals, optional value labels, either vertical or horizontal. -
CircularSlider
A powerful Circular Slider. It's written in Swift, it's 100% IBDesignable and all parameters are IBInspectable. -
MARKRangeSlider
A custom reusable slider control with 2 thumbs (range slider). -
CircleSlider
CircleSlider is a Circular slider library. written in pure Swift. -
WESlider
Simple and light weight slider with chapter management -
VolumeControl
VolumeControl is a custom volume control for iPhone featuring a well-designed round slider. -
IntervalSlider
IntervalSlider is a slider library like ReutersTV app. written in pure swift. -
VerticalSlider
VerticalSlider is a vertical slider control for iOS in Swift. -
VSVerticalSlider
An animatable and customizable vertical slider written in Swift4. -
GraduatedSlider
A UISlider-like control with graduations (e.g. like sliders on DJ decks), can be used vertically or horizontally, optional haptic feedback
Appwrite - The Open Source Firebase alternative introduces iOS support
* Code Quality Rankings and insights are calculated and provided by Lumnify.
They vary from L1 to L5 with "L5" being the highest.
Do you think we are missing an alternative of SectionedSlider or a related project?
README
SectionedSlider
[iOS](Images/static.gif) | [watchOS](Images/static2.gif) |
Control Center Slider
Requirements
- iOS 8.0+
- Swift 3.0+
- Xcode 8.0+
Installation
CocoaPods
CocoaPods is a dependency manager for Cocoa projects. You can install it with the following command:
$ gem install cocoapods
CocoaPods 1.1.0+ is required to build SectionedSlider 0.0.5+.
To integrate SectionedSlider into your Xcode project using CocoaPods, specify it in your Podfile
:
source 'https://github.com/CocoaPods/Specs.git'
platform :ios, '8.0'
use_frameworks!
pod 'SectionedSlider', '~> 0.0.5'
Then, run the following command:
$ pod install
Carthage
Carthage is a decentralized dependency manager that automates the process of adding frameworks to your Cocoa application.
You can install Carthage with Homebrew using the following command:
$ brew update
$ brew install carthage
To integrate SectionedSlider into your Xcode project using Carthage, specify it in your Cartfile
:
github "LeonardoCardoso/SectionedSlider" ~> 0.0.5
Manually
If you prefer not to use either of the aforementioned dependency managers, you can integrate SectionedSlider into your project manually.
Usage
You can use a SectionedSlider
on Storyboards or, if you want to do it programatically, you can create it just like you create a UIView:
SectionedSlider(
frame: CGRect(x: 0, y: 0, width: 78, height: 200), // Choose a 15.6 / 40 ration for width/height
selectedSection: 3, // Initial selected section
sections: 10 // Number of sections. Choose between 2 and 20
)
Palette
You also can customize the colors of the button on its constructor.
SectionedSlider(
frame: wrapView.frame,
selectedSection: 3,
sections: 10,
palette: Palette(
viewBackgroundColor: UIColor?,
sliderBackgroundColor: UIColor?,
sliderColor: UIColor?
)
)
[palette](Images/palette.png)
Delegate
You can watch changes of state by implementing the protocol:
public protocol SectionedSliderDelegate {
func sectionChanged(slider: SectionedSlider, selected: Int)
}
Storyboard
Last but not least, you can customize SectionedSlider
properties right from Interface Builder or Storyboards.
[storyboard](Images/storyboard.png)
License
SectionedSlider is released under the MIT license. See LICENSE for details.
*Note that all licence references and agreements mentioned in the SectionedSlider README section above
are relevant to that project's source code only.