Sha256: 95a10f1c9aead3912195855e73b9aaef167e74f09dabf6886048a26827dd81ed

Contents?: true

Size: 377 Bytes

Versions: 6

Compression:

Stored size: 377 Bytes

Contents

module ProMotion::MotionTable
  module GroupedTable
    include SectionedTable
    include RefreshableTable

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

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
ProMotion-0.6.5 lib/ProMotion/screen_helpers/_tables/grouped_table.rb
ProMotion-0.6.4 lib/ProMotion/screen_helpers/_tables/grouped_table.rb
ProMotion-0.6.3 lib/ProMotion/screen_helpers/_tables/grouped_table.rb
ProMotion-0.6.2 lib/ProMotion/screen_helpers/_tables/grouped_table.rb
ProMotion-0.6.1 lib/ProMotion/screen_helpers/_tables/grouped_table.rb
ProMotion-0.6.0 lib/ProMotion/screen_helpers/_tables/grouped_table.rb