Wow, the tableFooterView is exactly what I needed. Can't believe I overlooked it earlier. I found the code I needed on the
iPhone Club and modified it to the following:
Code:
UIImage *footerImage = [UIImage imageNamed:@"CreditCards.png"];
UIImageView *fView = [[UIImageView alloc] initWithImage:footerImage];
[self.tableView setTableFooterView:fView];
[fView release];
[footerImage release];
Works great, thanks so much!