Method: UITextField_Delegate#textFieldShouldClear

Defined in:
lib/formotion/patch/ui_text_field.rb

#textFieldShouldClear(theTextField) ⇒ Object



153
154
155
156
157
158
# File 'lib/formotion/patch/ui_text_field.rb', line 153

def textFieldShouldClear(theTextField)
  if self.textFieldShouldClear_callback
    return self.textFieldShouldClear_callback.call(theTextField)
  end
  true
end