Method: ProMotion::Styling#add_to

Defined in:
lib/ProMotion/view/styling.rb

#add_to(parent_element, element, attrs = {}) ⇒ Object



81
82
83
84
85
86
87
88
# File 'lib/ProMotion/view/styling.rb', line 81

def add_to(parent_element, element, attrs = {})
  parent_element.addSubview element
  if attrs && attrs.length > 0
    set_attributes(element, attrs)
    set_easy_attributes(parent_element, element, attrs)
  end
  element
end