Sha256: 7016737cedff6c3ca7a2d53d4971c1b0e5ae8780c4527e07972763679cae297b

Contents?: true

Size: 340 Bytes

Versions: 5

Compression:

Stored size: 340 Bytes

Contents

module ProMotion::MotionTable
  module GroupedTable
    include ::ProMotion::MotionTable::SectionedTable
    
    def tableView
      @tableView ||= UITableView.alloc.initWithFrame(self.view.frame, style:UITableViewStyleGrouped)
      @tableView.dataSource = self;
      @tableView.delegate = self;
      return @tableView
    end
  end
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
ProMotion-0.3.0 lib/ProMotion/helpers/motion-table/2nd/grouped_table.rb
ProMotion-0.2.0 lib/ProMotion/helpers/motion-table/2nd/grouped_table.rb
ProMotion-0.1.2 lib/ProMotion/helpers/motion-table/2nd/grouped_table.rb
ProMotion-0.1.1 lib/ProMotion/helpers/motion-table/2nd/grouped_table.rb
ProMotion-0.1.0 lib/ProMotion/helpers/motion-table/grouped_table.rb