Чтобы получить это Эффект мирового времени Я установил фоновое изображение для фона UITableView и установил цвет фона таблицы на clearColor через:
UIImage *image = [UIImage imageNamed:@"background.png"];
UIImageView *imageView = [[UIImageView alloc] initWithImage:image];
[imageView setFrame:self.tableView.bounds];
[self.tableView setBackgroundView:imageView];
[imageView release];
[self.tableView setBackgroundColor:[UIColor clearColor]];
Чтобы избавиться от разделителей, я изменил стиль разделителя на нет через
self.tableView.separatorStyle = UITableViewCellSeparatorStyleNone;
Для UITableViewCell я установил цвет фона (здесь: белый):
UIView *cellBackgroundView = [[UIView alloc] init];
[cellBackgroundView setBackgroundColor:[UIColor whiteColor]];
[cell setBackgroundView:cellBackgroundView];
[cellBackgroundView release];