For better re-usability I want to create a table view outside of my Storyboard.
Now when I create a UITableView based ViewController with Nib in Xcode I
In Swift 4:
Important - Register the nib file in viewDidLoad
yourTableview.register(UINib.init(nibName: "CustomCellTableViewCell", bundle: nil), forCellReuseIdentifier: "Cell")
(or)
yourTableview.register(UINib(nibName: "CustomCellTableViewCell", bundle: Bundle.main), forCellReuseIdentifier: "Cell")