Right now I am creating a UITableView in a FlipsideView nib. I don\'t seem to be able to change the background of the table view from within interface builder. I can fix t
A UITableView doesn't have a UIScrollView, it is a UIScrollView. UITableView is a subclass of UIScrollView as can be seen it the documentation. Any properties of functionality of UIScrollView you want to access can be directly accessed via the table view.
Similarly, UITableViewDelegates are all UIScrollViewDelegates.