パターン画像のテーブルビューの背景色を設定できます。
UIColor *backgroundColor = [[UIColor alloc] initWithPatternImage:[UIImage imageNamed:@"background"]];
self.tableView.backgroundColor = backgroundColor;
画像のサイズがテーブル ビューのサイズ (フレーム) と異なる場合、背景画像は引き伸ばされずに並べて表示されることに注意してください。
もう 1 つのオプションは、テーブルに背景イメージ ビューを追加し、テーブル ビューの背景をクリアに設定することです。
UIImageView *imageView = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"background"]];
[imageView setFrame:self.tableView.frame];
self.tableView.backgroundView = imageView;
self.tableView.backgroundColor = [UIColor clearColor];