5 Commits

Author SHA1 Message Date
Christos Koninis 2906c33e31 Increased minimum iOS deployment target to 9.0. Fixes #73 (#74) 2021-03-29 13:08:11 +01:00
Hamza Ghazouani cd0a333e34 Update README.md 2020-05-30 15:28:27 +02:00
Hamza Ghazouani 35d709a4bf Update README.md 2020-05-30 15:27:39 +02:00
Artyom Rudakov 2b98462d32 Support of Swift Package Manager (#62)
Support of Swift Package Manager
2020-02-24 13:45:42 +01:00
Hamza Ghazouani 1b31f26226 Fix the issue #31: the thumb jumps when the minimumValue > 0 (#58) 2019-10-21 00:38:06 +02:00
4 changed files with 27 additions and 12 deletions
+1 -1
View File
@@ -28,7 +28,7 @@ s.author = { 'Hamza Ghazouani' => 'hamza.ghazouani@gmail.com' }
s.source = { :git => 'https://github.com/HamzaGhazouani/HGCircularSlider.git', :tag => s.version.to_s }
s.social_media_url = 'https://twitter.com/GhazouaniHamza'
s.ios.deployment_target = '8.0'
s.ios.deployment_target = '9.0'
s.source_files = 'HGCircularSlider/Classes/**/*'
@@ -6,6 +6,8 @@
//
//
import UIKit
/**
A visual control used to select a fixed range of values from a continuous range of values.
MidPointCircularSlider use the target-action mechanism to report changes made during the course of editing:
+17
View File
@@ -0,0 +1,17 @@
// swift-tools-version:5.0
import PackageDescription
let package = Package(
name: "HGCircularSlider",
platforms: [.iOS(.v8)],
products: [
.library(
name: "HGCircularSlider",
targets: ["HGCircularSlider"]
)
],
targets: [
.target(name: "HGCircularSlider", path: "HGCircularSlider/Classes")
]
)
+7 -11
View File
@@ -27,22 +27,19 @@ To run the example project, clone the repo, and run `pod install` from the Examp
## Requirements
- iOS 9.0+
- Xcode 10.0
- Xcode 11.4
## Installation
HGCircularSlider is available through [CocoaPods](http://cocoapods.org). To install
HGCircularSlider is also available through [Swift Package Manager](https://swift.org/package-manager/)
Follow this [doc](https://developer.apple.com/documentation/xcode/adding_package_dependencies_to_your_app?language=swift).
HGCircularSlider is also available through [CocoaPods](http://cocoapods.org). To install
it, simply add the following line to your Podfile:
``` ruby
# Swift 3.1 - Xcode 8.3
pod 'HGCircularSlider', '~> 2.0.0'
# Swift 3 - Xcode 8
pod 'HGCircularSlider', '~> 1.0.3'
# Swift 2.2 - Xcode 7.3.1 (Checkout Swift2_Xcode7.3 branche)
pod 'HGCircularSlider', '~> 0.1.2'
pod 'HGCircularSlider', '~> 2.2.1'
```
HGCircularSlider is also available through [Carthage](https://github.com/Carthage/Carthage). To install
@@ -50,7 +47,6 @@ it, simply add the following line to your Cartfile:
``` ruby
# Swift 3.1 - Xcode 8
github "HamzaGhazouani/HGCircularSlider"
```