Sha256: 6cf62511321ab98dc6c093ed8b6a131bbf63af53637e92f17488ecc8c76bff8a

Contents?: true

Size: 223 Bytes

Versions: 3

Compression:

Stored size: 223 Bytes

Contents

class DMCellWithSection < UITableViewCell
  attr_accessor :section

  def setSection(section)
    @section = section
  end

  def drawRect(rect)
    super
    section.draw_in(rect) if section.respond_to?(:draw_in)
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
motion-prime-0.4.2 motion-prime/support/dm_cell_with_section.rb
motion-prime-0.4.1 motion-prime/support/dm_cell_with_section.rb
motion-prime-0.4.0 motion-prime/support/dm_cell_with_section.rb