We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dc9bc80 commit b7730b1Copy full SHA for b7730b1
iOSFormUtils/Form.swift
@@ -116,6 +116,10 @@ open class Form: UIScrollView {
116
fileprivate func handleInputsReturnKeys() {
117
let inputs = getOrderedInputs()
118
for input in inputs {
119
+ if let input: FormInput = input as? FormInput, nil == input.formInputDelegate {
120
+ input.formInputDelegate = self
121
+ }
122
+
123
if let textField: UITextField = input as? UITextField {
124
if textField == inputs.last as? UITextField {
125
textField.returnKeyType = .go
0 commit comments