明確な背景を持つグループ化されたUItableViewを作成しようとしています。しかし、何らかの理由で、セクションはまだ明るい灰色をしています。backgroundviewをnilに設定しようとしましたが、機能しませんでした。また、backgroundViewをclearColorを使用したビューに設定しようとしましたが、どちらも機能しませんでした。ここで何が間違っているのかわかりません。
// make table's background clear
[self.myTable setBackgroundView:nil];
[self.myTable setBackgroundView:[[[UIView alloc] init] autorelease]];
UIView *bgView = [[UIView alloc] initWithFrame:self.myTable.frame];
bgView.backgroundColor = [UIColor clearColor];
self.myTable.backgroundView = bgView;
[bgView release];