Method: UITextField_Delegate#textFieldShouldEndEditing
- Defined in:
- lib/formotion/patch/ui_text_field.rb
#textFieldShouldEndEditing(theTextField) ⇒ Object
113 114 115 116 117 118 119 120 121 122 123 |
# File 'lib/formotion/patch/ui_text_field.rb', line 113 def textFieldShouldEndEditing(theTextField) if self.textFieldShouldEndEditing_callback return self.textFieldShouldEndEditing_callback.call(theTextField) end if BW::Device.ios_version >= "7.0" theTextField.text = theTextField.text.gsub("\u00a0", " ").strip end true end |