From add9f61c8ec9dcfadbca9ae63c85631077d51672 Mon Sep 17 00:00:00 2001 From: spromicky Date: Thu, 8 Nov 2018 18:24:12 +0200 Subject: [PATCH] update README.md --- README.md | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 4e13bed..7a19507 100644 --- a/README.md +++ b/README.md @@ -25,9 +25,11 @@ StepSlider can be fully customised by any of this properties: - `sliderCircleColor` - `sliderCircleImage` +Supports haptic feedback on `valueChanged:`. + #### Labels -From version 1.0.0 StepSlider support labels near each circle on track. +From version `1.0.0` StepSlider support labels near each circle on track. ```objc slider.labels = @[@"Some string", @"another string", @"one more"]; @@ -39,7 +41,7 @@ slider.labels = @[@"Some string", @"another string", @"one more"]; #### Images -For `StepSlider 1.2.0` and higher you can use images for `sliderCircle ` and `trackCircles`. For `trackCircles` supported two states: `normal` and `selected`. +For `1.2.0` and higher you can use images for `sliderCircle ` and `trackCircles`. For `trackCircles` supported two states: `normal` and `selected`. ```objc [self.sliderView setTrackCircleImage:[UIImage imageNamed:@"unselected_dot"] forState:UIControlStateNormal]; @@ -50,8 +52,8 @@ For `StepSlider 1.2.0` and higher you can use images for `sliderCircle ` and `tr ## Requirements -- iOS 7.0+ -- Xcode 8 +- version `1.3.0` and above needs iOS 10.0+ +- version `1.2.1` supports iOS 7.0+ ## Installation @@ -60,7 +62,7 @@ For `StepSlider 1.2.0` and higher you can use images for `sliderCircle ` and `tr To integrate `StepSlider` into your Xcode project using CocoaPods, specify it in your `Podfile`: ``` -pod 'StepSlider', '~> 1.2.0' +pod 'StepSlider', '~> 1.3.0' ``` Then, run the following command: @@ -74,7 +76,7 @@ $ pod install To integrate `StepSlider` into your Xcode project using Carthage, specify it in your `Cartfile`: ``` -github "spromicky/StepSlider" ~> 1.2.0 +github "spromicky/StepSlider" ~> 1.3.0 ``` Run `carthage update` to build the framework and drag the built `StepSlider.framework` into your Xcode project.