Método fácil para adicionar imagem ao rodapé e ao cabeçalho em UITableView

UIImageView * tableHeader = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"header.png"]];
[areasTableView setTableHeaderView:tableHeader];
UIImageView * tableFooter = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"footer.png"]];
[areasTableView setTableFooterView:tableFooter];