I have a UIView that contains some controls etc… This UIView also contains a scrollview that will house some content in a UITableView.
I have gotten everything working fine except I can’t get the data from my fetchedResultsController to populate the table.
Does my main View need to be a UITableViewController? Currently I have it as a UIViewController, since the UIView is the ‘master’ view.
As per OP’s request, my comment as an answer:
UITableViewControlleris nothing more than a convenience class that implements the respective data source and delegate protocols on a normalUIViewController, so that won’t matter. If you want some more concrete help, you’ll have to post some code so people have an idea of what may be going on.