Popularity
2.3
Stable
Activity
0.0
Stable
89
4
11

Code Quality Rank: L5
Programming language: Objective-C
License: MIT License
Tags: UI     Slider    
Latest version: v0.0.5

WESlider alternatives and similar libraries

Based on the "Slider" category.
Alternatively, view WESlider alternatives based on common mentions on social networks and blogs.

Do you think we are missing an alternative of WESlider or a related project?

Add another 'Slider' Library

README

WESlider

Version License Platform

Simple and light weight slider with chapter management

Demo

WESlider

Installation

CocoaPods

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

pod "WESlider", '~> 0.0.5'

Usage

- (void)loadView {
    [super loadView];

    WESlider *slider = [[WESlider alloc] initWithWidth:CGRectGetWidth(self.view.frame)];
    slider.maximumValue = 100.0f;
    slider.minimumValue = 0.0f;

    [_slider setChunks:@[
                          [WEChunk chunkWithDuration:25.0f],
                          [WEChunk chunkWithOffset:50],
                          [WEChunk chunkWithDuration:25.0f]
                         ]];

    [self.view addSubview:slider];
}

Author

Lucas Ortis:

License

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


*Note that all licence references and agreements mentioned in the WESlider README section above are relevant to that project's source code only.