Skip to content

Instantly share code, notes, and snippets.

@sbauch
sbauch / bw.rb
Created August 6, 2012 18:30 — forked from clayallsopp/gist:3277152
having trouble with bubblewrap
#directory_controller.rb
class DirectoryController < UIViewController
def viewDidLoad
super
self.title = "Directory"
@table = UITableView.alloc.initWithFrame(self.view.bounds)
self.view.addSubview @table
@table.dataSource = self
@table.delegate = self