Transparent background in grouped UITableView - iPhone

background, iphone, transparency, uitableview

Solution

Instead of using

UIColor *bgColor = [[UIColor alloc] initWithWhite:1 alpha:0.0];
historyTable.backgroundColor = bgColor;

Just use:

historyTable.backgroundColor = [UIColor clearColor];

That also clears up the memory leak you were creating.

Problem

I want to make the grouped UITableView transparent. I partially succeded with the following code: ``` UIColor *bgColor = [[UIColor alloc] initWithWhite:1 alpha:0.0]; historyTable.backgroundColor = bgColor; ``` Unfortunately, black corners appeared in the rounded cells. How to get rid of them?

Original source