Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

iOS7 uitablecell white background [closed]

This happened with me after installing iOS7

The UITableController has clear background color and I use image as cell background and this image has transparent color

So, it suppose to have the color of the view but what happened that it has the white color

it works on iOS6 and iOS5 perfectly, but on iOS7 it shows white color on the cell

like image 535
AzabAF Avatar asked Jul 13 '26 08:07

AzabAF


1 Answers

The solution was simple, just set the cell with transperant color too.

cell.backgroundColor = [UIColor clearColor];

and it works fine now

like image 126
AzabAF Avatar answered Jul 15 '26 00:07

AzabAF