Sha256: 4df430b290c3bb5789a373b8fb01115fb9a9404d3c90e5843aba1a0e8c324dad

Contents?: true

Size: 351 Bytes

Versions: 8

Compression:

Stored size: 351 Bytes

Contents

module ProMotion
  module GroupedTable
    include Table
    include RefreshableTable

    def table_view
      @table_view ||= begin
        t = UITableView.alloc.initWithFrame(self.view.frame, style:UITableViewStyleGrouped)
        t.dataSource = self
        t.delegate = self
        t
      end
    end
    alias :tableView :table_view
  end
end

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
ProMotion-0.7.8 lib/ProMotion/screens/_tables/grouped_table.rb
ProMotion-0.7.6 lib/ProMotion/screens/_tables/grouped_table.rb
ProMotion-0.7.5 lib/ProMotion/screens/_tables/grouped_table.rb
ProMotion-0.7.4 lib/ProMotion/screens/_tables/grouped_table.rb
ProMotion-0.7.3 lib/ProMotion/screens/_tables/grouped_table.rb
ProMotion-0.7.2 lib/ProMotion/screens/_tables/grouped_table.rb
ProMotion-0.7.1 lib/ProMotion/screens/_tables/grouped_table.rb
ProMotion-0.7.0 lib/ProMotion/screens/_tables/grouped_table.rb