Sha256: f381192de5312a08dc848e925ab3f3ef97f2542bb8c62531f443d43ffcb56d2b

Contents?: true

Size: 375 Bytes

Versions: 8

Compression:

Stored size: 375 Bytes

Contents

module ProMotion
  module PlainTable
    include Table
    include SearchableTable
    include RefreshableTable

    def table_view
      @table_view ||= begin
        t = UITableView.alloc.initWithFrame(self.view.frame, style:UITableViewStylePlain)
        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/plain_table.rb
ProMotion-0.7.6 lib/ProMotion/screens/_tables/plain_table.rb
ProMotion-0.7.5 lib/ProMotion/screens/_tables/plain_table.rb
ProMotion-0.7.4 lib/ProMotion/screens/_tables/plain_table.rb
ProMotion-0.7.3 lib/ProMotion/screens/_tables/plain_table.rb
ProMotion-0.7.2 lib/ProMotion/screens/_tables/plain_table.rb
ProMotion-0.7.1 lib/ProMotion/screens/_tables/plain_table.rb
ProMotion-0.7.0 lib/ProMotion/screens/_tables/plain_table.rb