LabeledTextFieldTableViewCell.swift 641 B

12345678910111213141516171819202122232425262728
  1. //
  2. // LabeledTextFieldTableViewCell.swift
  3. // LoopKitUI
  4. //
  5. // Created by Michael Pangburn on 1/3/19.
  6. // Copyright © 2019 LoopKit Authors. All rights reserved.
  7. //
  8. import UIKit
  9. public class LabeledTextFieldTableViewCell: TextFieldTableViewCell {
  10. @IBOutlet public weak var titleLabel: UILabel!
  11. private var customInputTextField: CustomInputTextField? {
  12. return textField as? CustomInputTextField
  13. }
  14. public var customInput: UIInputViewController? {
  15. get {
  16. return customInputTextField?.customInput
  17. }
  18. set {
  19. customInputTextField?.customInput = newValue
  20. }
  21. }
  22. }