123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137 |
- // PickerRow.swift
- // Eureka ( https://github.com/xmartlabs/Eureka )
- //
- // Copyright (c) 2016 Xmartlabs SRL ( http://xmartlabs.com )
- //
- //
- // Permission is hereby granted, free of charge, to any person obtaining a copy
- // of this software and associated documentation files (the "Software"), to deal
- // in the Software without restriction, including without limitation the rights
- // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
- // copies of the Software, and to permit persons to whom the Software is
- // furnished to do so, subject to the following conditions:
- //
- // The above copyright notice and this permission notice shall be included in
- // all copies or substantial portions of the Software.
- //
- // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
- // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
- // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
- // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
- // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
- // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
- // THE SOFTWARE.
- import Foundation
- import UIKit
- // MARK: PickerCell
- open class _PickerCell<T> : Cell<T>, CellType, UIPickerViewDataSource, UIPickerViewDelegate where T: Equatable {
- @IBOutlet public weak var picker: UIPickerView!
- fileprivate var pickerRow: _PickerRow<T>? { return row as? _PickerRow<T> }
- public required init(style: UITableViewCell.CellStyle, reuseIdentifier: String?) {
- let pickerView = UIPickerView()
- self.picker = pickerView
- self.picker?.translatesAutoresizingMaskIntoConstraints = false
- super.init(style: style, reuseIdentifier: reuseIdentifier)
- self.contentView.addSubview(pickerView)
- self.contentView.addConstraints(NSLayoutConstraint.constraints(withVisualFormat: "V:|-0-[picker]-0-|", options: [], metrics: nil, views: ["picker": pickerView]))
- self.contentView.addConstraints(NSLayoutConstraint.constraints(withVisualFormat: "H:|-0-[picker]-0-|", options: [], metrics: nil, views: ["picker": pickerView]))
- }
- required public init?(coder aDecoder: NSCoder) {
- super.init(coder: aDecoder)
- }
- open override func setup() {
- super.setup()
- accessoryType = .none
- editingAccessoryType = .none
- height = { UITableView.automaticDimension }
- picker.delegate = self
- picker.dataSource = self
- }
- open override func update() {
- super.update()
- textLabel?.text = nil
- detailTextLabel?.text = nil
- picker.reloadAllComponents()
- }
- deinit {
- picker?.delegate = nil
- picker?.dataSource = nil
- }
- open var pickerTextAttributes: [NSAttributedString.Key: Any]?
- open func numberOfComponents(in pickerView: UIPickerView) -> Int {
- return 1
- }
- open func pickerView(_ pickerView: UIPickerView, numberOfRowsInComponent component: Int) -> Int {
- return pickerRow?.options.count ?? 0
- }
- open func pickerView(_ pickerView: UIPickerView, titleForRow row: Int, forComponent component: Int) -> String? {
- return pickerRow?.displayValueFor?(pickerRow?.options[row])
- }
- open func pickerView(_ pickerView: UIPickerView, didSelectRow row: Int, inComponent component: Int) {
- if let picker = pickerRow, !picker.options.isEmpty {
- picker.value = picker.options[row]
- }
- }
- open func pickerView(_ pickerView: UIPickerView, attributedTitleForRow row: Int, forComponent component: Int) -> NSAttributedString? {
- guard let pickerTextAttributes = pickerTextAttributes, let text = self.pickerView(pickerView, titleForRow: row, forComponent: component) else {
- return nil
- }
- return NSAttributedString(string: text, attributes: pickerTextAttributes)
- }
- }
- open class PickerCell<T> : _PickerCell<T> where T: Equatable {
- required public init?(coder aDecoder: NSCoder) {
- super.init(coder: aDecoder)
- }
- public required init(style: UITableViewCell.CellStyle, reuseIdentifier: String?) {
- super.init(style: style, reuseIdentifier: reuseIdentifier)
- }
- open override func update() {
- super.update()
- if let selectedValue = pickerRow?.value, let index = pickerRow?.options.firstIndex(of: selectedValue) {
- picker.selectRow(index, inComponent: 0, animated: true)
- }
- }
- }
- // MARK: PickerRow
- open class _PickerRow<T> : Row<PickerCell<T>> where T: Equatable {
- open var options = [T]()
- required public init(tag: String?) {
- super.init(tag: tag)
- }
- }
- /// A generic row where the user can pick an option from a picker view
- public final class PickerRow<T>: _PickerRow<T>, RowType where T: Equatable {
- required public init(tag: String?) {
- super.init(tag: tag)
- }
- }
|