IBでは、
スタイル: グループ化、シングル ライン エッチング、カラー ホワイト。私のビューの背景はクリアカラーです。
この ViewController の viewDidLoad で、ダミーの背景ビューを作成します。
UIView *tableBgView = [[UIView alloc] initWithFrame:self.tableView.frame];
tableBgView.backgroundColor = [UIColor clearColor];
self.tableView.backgroundView = tableBgView;
[tableBgView release];
cellForRowAtIndexPath には次のものがあります。
UIView *bgView = [[UIView alloc] initWithFrame:cell.bounds];
bgView.backgroundColor = [UIColor clearColor];
cell.backgroundView = bgView;
[bgView release];
私がやろうとしているのは、グループ化されたテーブルの丸みを帯びた長方形の外観の代わりに長方形の背景を使用することです.cellForRowAtIndexPathでは、丸みを帯びた長方形の外観を取り除くためにclearColor backgroundViewを作成するため、セパレーターはもうありません. この bgView の下部にある別の単一ピクセルの UIView 行を追加して、セパレーターを元に戻しますか? それとももっと良い方法がありますか?ありがとう。