It's custom height picker for your health app. you can use this where picking up height from user, Or you can use as a custom picker too.
Import YTHeightPicker.swift
into your project.
class ViewController: UIViewController {
var heighPicker: TYHeightPicker!
override func viewDidLoad() {
super.viewDidLoad()
setupTYHeightPicker()
}
func setupTYHeightPicker() {
heighPicker = TYHeightPicker()
heighPicker.translatesAutoresizingMaskIntoConstraints = false
heighPicker.delegate = self
self.view.addSubview(heighPicker)
heighPicker.leftAnchor.constraint(equalTo: self.view.leftAnchor).isActive = true
heighPicker.rightAnchor.constraint(equalTo: self.view.rightAnchor).isActive = true
heighPicker.centerYAnchor.constraint(equalTo: self.view.centerYAnchor).isActive = true
heighPicker.heightAnchor.constraint(equalToConstant: 145).isActive = true
}
}
func selectedHeight(height: CGFloat, unit: HeightUnit) {
print(height, unit)
}
heighPicker.setDefaultHeight(67, unit: .Inch)