Method: UITextField_Delegate#textFieldShouldBeginEditing

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

#textFieldShouldBeginEditing(theTextField) ⇒ Object



100
101
102
103
104
105
# File 'lib/formotion/patch/ui_text_field.rb', line 100

def textFieldShouldBeginEditing(theTextField)
  if self.textFieldShouldBeginEditing_callback
    return self.textFieldShouldBeginEditing_callback.call(theTextField)
  end
  true
end