Sha256: 1bcf6bcfb8cfd162fbb5662ee0d8c7ae1ad9c24a2ce1289b810f8dacf3783022

Contents?: true

Size: 293 Bytes

Versions: 1

Compression:

Stored size: 293 Bytes

Contents

class UITableView
  class << self

    def plain(frame=[[0, 0], [0, 0]])
      UITableView.alloc.initWithFrame(frame, style: UITableViewStylePlain)
    end

    def grouped(frame=[[0, 0], [0, 0]])
      UITableView.alloc.initWithFrame(frame, style: UITableViewStyleGrouped)
    end

  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
cha_work-0.1 lib/cha_work/sugar/uitableview.rb