Skip to content

Instantly share code, notes, and snippets.

@vikhyat
vikhyat / gist:4433910
Last active December 10, 2015 12:28 — forked from anonymous/gist:4433857
class AgendaTableViewController < UITableViewController
def tableView(tableView, numberOfRowsInSection:section)
return 10
end
def tableView(tableView, cellForRowAtIndexPath:indexPath)
tableView.dequeueReusableCellWithIdentifier('test') ||
UITableViewCell.alloc.initWithStyle(UITableViewCellStyleDefault, reuseIdentifier:'test')
end