CocoaPods trunk is moving to be read-only. Read more on the blog, there are 18 months to go.
TestsTested | ✗ |
LangLanguage | Obj-CObjective C |
License | MIT |
ReleasedLast Release | Apr 2015 |
Maintained by Kevin Kirkup.
This is a custom UIScrollView that I used for one of my apps. It's a customizable dial control for all your control displaying needs. Includes customization through UIAppearance for all major properties.
To add TRSDialView to your project, add the following to your Podfile:
playform :ios
pod 'TRSDialScrollView', '>= 1.0'
- (void) viewDidLoad
{
[super viewDidLoad];
// Set the numeric range for the dial
[self.dialView setDialRangeFrom:0 to:50];
// Set the default value
self.dialView.currentValue = 20;
}
- (void)someOtherMethod
{
NSInteger value = self.dialView.currentValue;
}
TRSDialScrollView
is distributed under the MIT License.