Skip to content

Instantly share code, notes, and snippets.

@nathanborror
Created June 13, 2014 19:28
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nathanborror/e257337e73d091423804 to your computer and use it in GitHub Desktop.
Save nathanborror/e257337e73d091423804 to your computer and use it in GitHub Desktop.
class MasterViewController: UIViewController, UINavigationControllerDelegate {
init() {
super.init(nibName: nil, bundle: nil)
}
}
extension MasterViewController: UITableViewDataSource {
func tableView(tableView: UITableView!, numberOfRowsInSection section: Int) -> Int {
}
func tableView(tableView: UITableView!, cellForRowAtIndexPath indexPath: NSIndexPath!) -> UITableViewCell! {
}
}
extension MasterViewController: UITableViewDelegate {
func tableView(tableView: UITableView!, didSelectRowAtIndexPath indexPath: NSIndexPath!) {
}
}
extension MasterViewController: UIImagePickerControllerDelegate {
func imagePickerController(picker: UIImagePickerController!, didFinishMediaWithInfo info: NSDictionary!) {
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment