You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
DistancePicker is a custom UIKit control to select a distance with a pan gesture. It looks like a ruler with multiple distance marks and can be used to resize a map, set up a geofence or choose a search radius.
To see in action, take a look at Placeboard demo video.
Compatibility
DistancePicker requires iOS 7 or higher and is written in Swift 2.2.
Note: If you use Carthage, CocoaPods or manually install it as a framework, iOS 8 is required.
Installation
Carthage
Add the following line to your Cartfile, run carthage update to build the framework and drag the built DistancePicker.framework into your Xcode project.
github "qmathe/DistancePicker"
CocoaPods
Add the following lines to your Podfile and run pod install with CocoaPods 0.36 or newer.
use_frameworks!
pod "DistancePicker"
Manually
If you don't use Carthage or CocoaPods, it's possible to drag the built framework or embed the source files into your project.
Framework
Build DistancePicker framework and drop it into your Xcode project.
Files
Drop DistancePicker.swift and UIGestureRecognizer+MissingPublicAPI.h into your Xcode project, add #import <DistancePicker/UIGestureRecognizer+MissingPublicAPI.h> to your bridging header and link MapKit.
Note: If you don't use a bridging header, you must create one and declare it in Build Settings > Swift Compiler - Code Generation > Objective-C Bridging Header.
About
Custom UIKit control to select a distance with a pan gesture, written in Swift