class MPTableViewCellContentView < UITableViewCellContentView attr_accessor :section def setSection(section) @section = section.try(:weak_ref) end def drawRect(rect) section.try(:draw_in, rect) super end end