Method: MPTextView#initPlaceholder

Defined in:
motion-prime/support/mp_text_view.rb

#initPlaceholderObject



53
54
55
56
57
58
# File 'motion-prime/support/mp_text_view.rb', line 53

def initPlaceholder
  NSNotificationCenter.defaultCenter.addObserver(self,
    selector: :textChanged, name: UITextViewTextDidChangeNotification, object: self
  )
  @shouldDrawPlaceholder = placeholder && self.text.blank?
end