カスタム ビューを追加したい tableview セクション ヘッダーがあります。テーブルビューが読み込まれると、ここに示すように黒く表示されます: http://postimage.org/image/luluolc57/それ - ここに示されていますhttp://postimage.org/image/lek98nxud/
基本的に、テーブルビューの背景が透けて見えるように、このビューを灰色の円で透明にしたいと思います。これがそれぞれのコードです。
- (UIView *)tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section
{
return [[SummaryView alloc] init];
}
- (void)drawRect:(CGRect)rect
{
CGRect tintSize = CGRectMake(0.0, 0.0, self.bounds.size.height, self.bounds.size.height);
[[UIImage imageNamed:@"Circular Tint.png"] drawInRect:tintSize];
}