Sha256: b330b4af8ea3c69b9048ef6c0fd355d06b1de7a82451b60c884ae1c8d54bfe71

Contents?: true

Size: 401 Bytes

Versions: 6

Compression:

Stored size: 401 Bytes

Contents

module ProMotion::MotionTable
  module PlainTable
    include SectionedTable
    include SearchableTable
    include RefreshableTable

    def table_view
      @table_view ||= UITableView.alloc.initWithFrame(self.view.frame, style:UITableViewStylePlain)
      @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/plain_table.rb
ProMotion-0.6.4 lib/ProMotion/screen_helpers/_tables/plain_table.rb
ProMotion-0.6.3 lib/ProMotion/screen_helpers/_tables/plain_table.rb
ProMotion-0.6.2 lib/ProMotion/screen_helpers/_tables/plain_table.rb
ProMotion-0.6.1 lib/ProMotion/screen_helpers/_tables/plain_table.rb
ProMotion-0.6.0 lib/ProMotion/screen_helpers/_tables/plain_table.rb