class UnderOs::UI::Textarea

Public Instance Methods

textViewDidBeginEditing(textView) click to toggle source

delegate

# File lib/under_os/ui/textarea.rb, line 8
def textViewDidBeginEditing(textView)
  handle_focus
end
textViewDidChange(textView) click to toggle source
# File lib/under_os/ui/textarea.rb, line 12
def textViewDidChange(textView)
  handle_change
end
textViewDidEndEditing(textView) click to toggle source
# File lib/under_os/ui/textarea.rb, line 16
def textViewDidEndEditing(textView)
  handle_blur
end