Skip to content

Instantly share code, notes, and snippets.

@twocathouse
Created January 19, 2015 21:22
Show Gist options
  • Save twocathouse/b1124ae5ae8727eda525 to your computer and use it in GitHub Desktop.
Save twocathouse/b1124ae5ae8727eda525 to your computer and use it in GitHub Desktop.
import UIKit
class ViewController: UIViewController, UITableViewDataSource {
let jobTableIdentifier = "JobTableIdentifier"
@IBOutlet weak var tableView: UITableView!
override func viewDidLoad() {
super.viewDidLoad()
tableView.registerNib(NowJobCell.loadNib(), forCellReuseIdentifier: jobTableIdentifier)
// The above line triggers a compile time error saying `'NowJobCell.Type' does not have a member named 'loadNib'`
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment