Sha256: 350d7a164449b79877a7d0c8cffb34b742455726abbce8652218a4cc4dec7711

Contents?: true

Size: 372 Bytes

Versions: 4

Compression:

Stored size: 372 Bytes

Contents

module ProMotion::MotionTable
  module PlainTable
    include SectionedTable
    include SearchableTable

    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

4 entries across 4 versions & 1 rubygems

Version Path
ProMotion-0.5.2 lib/ProMotion/screen_helpers/_tables/plain_table.rb
ProMotion-0.5.0 lib/ProMotion/screen_helpers/_tables/plain_table.rb
ProMotion-0.4.1 lib/ProMotion/_helpers/motion-table/2nd/plain_table.rb
ProMotion-0.4.0 lib/ProMotion/_helpers/motion-table/2nd/plain_table.rb