私がコードに持っているもの: UITableViewController から継承されたクラスは myVC: UITableViewController
xib を使用しました。つまり、.m に dataSource と tableviewDelegates はありません。
[self.tableView setBackgroundView:Nil];
[self.tableView setBackgroundColor:[UIColor colorWithPatternImage: [UIImage imageNamed: @"App_Background"]]];
backgroundView も試しました
UIImageView *imgbg = [[UIImageView alloc]initWithFrame:self.tableView.frame];
imgbg.image = [UIImage imageNamed: @"App_Background"];
[self.tableView setBackgroundView:imgbg];
問題:セルの左右の余白に異なる色の問題画像が含まれている
空白のテーブルの画像は正しいため、これが必要な方法です
テーブルの必要なbgはこのようなものですが、tableCellのclearcolorも試しましたが、それでも青いフローティングセルのbgは変更されません
前もって感謝します