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