I have this code to set the background image of the UITableViewController:
self.tableView.backgroundColor = [UIColor colorWithPatternImage:[UIImage imageNamed:@"bg5.jpg"]];
Thats in viewDidLoad
.
On scrolling the table the part of that background image around each section goes with it, annoyingly. If I add a title and header to these sections then the background goes with that too. :/
Any ideas what is causing this?
EDIT it doesn't seem to be taking the background with it to be honest, its as if each section has its own version of the background - which is even more annoying, because even when stationary the background looks out of place.
Thanks
Tom