I need to set an image on my UITableViewController; If I have only one part on the Table Vision, then it works properly:
But if there are 2 sections, the image gets duplicated for each section.
Do not use a pattern image backgroundView property of the table view:
UIImageView * background = [[UIImageView alloc] initWithImage: [UIImage imageNamed: @ "someImage.jpeg"]]; [[Self tableview] setBackgroundView: Background]; [Background release];
Comments
Post a Comment