Sha256: 22a38abaadb2e1c2b7cb07c1a3b93e46d7a2a964dbbffc061cf65e5304960641

Contents?: true

Size: 203 Bytes

Versions: 4

Compression:

Stored size: 203 Bytes

Contents

class DMCellWithSection < UITableViewCell
  attr_accessor :section

  def setSection(section)
    @section = WeakRef.new(section)
  end

  def drawRect(rect)
    super
    section.draw_in(rect)
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
motion-prime-0.1.3 motion-prime/support/dm_cell_with_section.rb
motion-prime-0.1.2 motion-prime/support/dm_cell_with_section.rb
motion-prime-0.1.1 motion-prime/support/dm_cell_with_section.rb
motion-prime-0.1.0 motion-prime/support/dm_cell_with_section.rb