Sha256: 0a9f5893d80a062c9a4fe4a36383681a20c3f9ddb76cc9e8a3e95be9a133f1fc

Contents?: true

Size: 695 Bytes

Versions: 28

Compression:

Stored size: 695 Bytes

Contents

class MPTableHeaderWithSectionView < UITableViewHeaderFooterView
  attr_accessor :section, :selection_style, :content_view

  def setSection(section)
    @section = section.try(:weak_ref)
    self.content_view.setSection(@section)
  end

  def setNeedsDisplay
    content_view.try(:setNeedsDisplay)
    super
  end

  def initialize_content
    self.content_view = MPTableViewCellContentView.alloc.initWithFrame(self.bounds)
    self.content_view.setBackgroundColor(:clear.uicolor)
    self.content_view.autoresizingMask = UIViewAutoresizingFlexibleWidth | UIViewAutoresizingFlexibleHeight
    self.content_view.top = 0
    self.content_view.left = 0

    self.addSubview(content_view)
  end
end

Version data entries

28 entries across 28 versions & 1 rubygems

Version Path
motion-prime-1.0.7 motion-prime/support/mp_table_header_with_section.rb
motion-prime-1.0.6 motion-prime/support/mp_table_header_with_section.rb
motion-prime-1.0.5 motion-prime/support/mp_table_header_with_section.rb
motion-prime-1.0.4 motion-prime/support/mp_table_header_with_section.rb
motion-prime-1.0.3 motion-prime/support/mp_table_header_with_section.rb
motion-prime-1.0.2 motion-prime/support/mp_table_header_with_section.rb
motion-prime-1.0.1 motion-prime/support/mp_table_header_with_section.rb
motion-prime-1.0.0 motion-prime/support/mp_table_header_with_section.rb
motion-prime-0.9.9.2 motion-prime/support/mp_table_header_with_section.rb
motion-prime-0.9.9.1 motion-prime/support/mp_table_header_with_section.rb
motion-prime-0.9.9 motion-prime/support/mp_table_header_with_section.rb
motion-prime-0.9.8 motion-prime/support/mp_table_header_with_section.rb
motion-prime-0.9.7 motion-prime/support/mp_table_header_with_section.rb
motion-prime-0.9.6 motion-prime/support/mp_table_header_with_section.rb
motion-prime-0.9.5 motion-prime/support/mp_table_header_with_section.rb
motion-prime-0.9.4 motion-prime/support/mp_table_header_with_section.rb
motion-prime-0.9.3 motion-prime/support/mp_table_header_with_section.rb
motion-prime-0.9.2 motion-prime/support/mp_table_header_with_section.rb
motion-prime-0.9.1 motion-prime/support/mp_table_header_with_section.rb
motion-prime-0.9.0 motion-prime/support/mp_table_header_with_section.rb