When I use the following code to set the background of my UITableView to an image, about 20-30px of the image does not draw at the very bottom of the screen. I’m very puzzled by this as the image size is 480 high while the view is 460 high. The image should actually be sizing down to just barely fit the screen. Could somebody enlighten me? Thanks a lot
UIImageView *imageView = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"Default.png"]];
self.tableView.backgroundView = imageView;

Set the frame of the background image to this:
{{0, -20}, {320, 480}}either in IB or in code.ie