Sha256: f60526ee320b189db7e09035bb8844d3a377d865fa2d19d781342aaa634d98f9

Contents?: true

Size: 223 Bytes

Versions: 1

Compression:

Stored size: 223 Bytes

Contents

class MPCellWithSection < 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

1 entries across 1 versions & 1 rubygems

Version Path
motion-prime-0.4.3 motion-prime/support/mp_cell_with_section.rb