Custom Time Picker ViewController with Selection of start and end times in Swift 🔶. Based on Adey Salyard's design @ Dribbble
One to two paragraph statement about your product and what it does.
- 12h and 24h formats
- iOS 8.0+
- Xcode 7.3
You can use CocoaPods to install YourLibrary
by adding it to your Podfile
:
platform :ios, '8.0'
use_frameworks!
pod 'LFTimePicker'
To get the full benefits import LFTimePicker
wherever you import UIKit
import UIKit
import LFTimePicker
Create a Cartfile
that lists the framework and run carthage bootstrap
. Follow the instructions to add $(SRCROOT)/Carthage/Build/iOS/YourLibrary.framework
to an iOS project.
github "awesome-labs/LFTimePicker"
Add this project on your Package.swift
import PackageDescription
let package = Package(
name: "LFTimePicker"
)
- Download and drop
LFTimePickerController.swift
in your project. - Congratulations!
//1. Create a LFTimePickerController
let timePicker = LFTimePickerController()
//2. Present the timePicker
self.navigationController?.pushViewController(timePicker, animated: true)
//3. Implement the LFTimePickerControllerDelegate
extension ExampleViewController: LFTimePickerControllerDelegate {
func didPickTime(start: String, end: String) {
print(start)
print(end)
}
}
We would love for you to contribute to LFTimePicker, check the LICENSE
file for more info.
Lucas Farah – @7farah7 – [email protected]
Distributed under the MIT license. See LICENSE
for more information.