iphone - How do I set the background (window) for a tableview to an image? -
I have set the background color of my UITableView to clean so that I can see UIWindow. But depending on my selection I want to change the image presented (from the background page). An example would be: if (selection = 'blue') then image = blueski.pda (selection = 'green') then image = 'greengrass page'
thx, wes
self.tableView.backgroundColor = [UIColor colorWithPatternImage: [UIImage imageNamed: @ "greengrass.png"]];
Comments
Post a Comment