I'm trying to get a semi-transparent uitableview, with this color
[UIColor colorWithRed:(247.0/255.) green:(151.0/255.0) blue:(121.0/255.0) alpha:0.38];
It's ok if there are only empty cells, but when a cell has content inside, the background turns more solid. It's as if the cell itself had the same table background, so that transparency is multiplied.
The cells with content inside are semi-transparent, but with a wrong alpha.
The table background is set correctly
self.myTable.backgroundColor = bgcolor;
The background of the cell is set to clear and not opaque
self.contentView.backgroundColor = [UIColor clearColor];
self.contentView.opaque = NO;
So, why does it has this behavior? Can someone help me?