[](https://travis-ci.org/Oscar De Moya/ODMSwipeSelector)
To run the example project, clone the repo, and run pod install
from the Example directory first.
To use this control in your views from the interface builder add a UIView and set ODMSwipeSelector as the custom class. Default properties can be set from the Attributes Inspector of the interface builder.
Create an instance of ODMSwipeSelector add it to your view and set the values of the properties you want to customize.
ODMSwipeSelector *heightSelector = [[ODMSwipeSelector alloc] initWithFrame:CGRectMake(0, 20, 320, 50)];
heightSelector.backgroundColor = [UIColor whiteColor];
heightSelector.title = @"Height";
heightSelector.unit = ODMMeasureFormatInch;
heightSelector.value = 5.5;
[self.view addSubview:heightSelector];
ODMSwipeSelector is available through CocoaPods. To install it, simply add the following line to your Podfile:
pod "ODMSwipeSelector"
Oscar De Moya @odm
ODMSwipeSelector is available under the MIT license. See the LICENSE file for more info.