I’ve a UIView – containerView.
I have a table view controller – aTableViewController.
I’m trying to add the table view into the table view controller using:
[containerView addSubview:aTableViewController.tableView];
But there isn’t anything in the containerView. Hmm…
The code looks correct. Ensure that all of
containerView,aTableViewControllerand thetableVieware initialized properly. Try printing them out just before this line and ensure they are notnil