Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions Former/Cells/FormSelectorDatePickerCell.swift
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,10 @@ open class FormSelectorDatePickerCell: FormCell, SelectorDatePickerFormableRow {
open var selectorDatePicker: UIDatePicker?
open var selectorAccessoryView: UIView?

open override var canBecomeFirstResponder: Bool {
return true
}

public private(set) weak var titleLabel: UILabel!
public private(set) weak var displayLabel: UILabel!

Expand Down
4 changes: 4 additions & 0 deletions Former/Cells/FormSelectorPickerCell.swift
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,10 @@ open class FormSelectorPickerCell: FormCell, SelectorPickerFormableRow {
open var selectorPickerView: UIPickerView?
open var selectorAccessoryView: UIView?

open override var canBecomeFirstResponder: Bool {
return true
}

public private(set) weak var titleLabel: UILabel!
public private(set) weak var displayLabel: UILabel!

Expand Down