Sha256: 3dba2d6fab0e0a7e928a6672f2912f2e11efca485bb537be7e754f2805cd3189

Contents?: true

Size: 386 Bytes

Versions: 5

Compression:

Stored size: 386 Bytes

Contents

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

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

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
ProMotion-0.3.0 lib/ProMotion/helpers/motion-table/2nd/plain_table.rb
ProMotion-0.2.0 lib/ProMotion/helpers/motion-table/2nd/plain_table.rb
ProMotion-0.1.2 lib/ProMotion/helpers/motion-table/2nd/plain_table.rb
ProMotion-0.1.1 lib/ProMotion/helpers/motion-table/2nd/plain_table.rb
ProMotion-0.1.0 lib/ProMotion/helpers/motion-table/plain_table.rb