I’ve created a Custom Table View Controller in Xcode 4.2 and I’ve created a UITableView inside of a view in Storyboard. How do I link the UITableView (which doesn’t appear in my code) to my Custom View Controller?(which is a subclass of UITableViewController)
Share
UITableViewControllerfrom inspector to the stage in IB, storyboard.NSObjectclass orUITableViewController.NSObjectin step 2, make sure to changeNSObjecttoUITableViewControllerin the header file.CustomTableViewController.UITableViewControllerasCustomTableViewController.CustomTableViewController, you can get a pointer to thetableViewby callingself.tableView.Let me if any part is not clear.