Quote:
Originally Posted by gblank
Hi
did you managed to solve this problem?
I'm having the same issue, I have an image that i set as a backgroundview of a cell, but when I have text in it it covers the image with white background.
Thanks
|
Solution:
Surfing the forums I found one solution that works for me and I’d like to share. In my case I was re-writting the UItableViewCell definition to build my own “Custom UITableViewCell” ’cause I need to display the information I had in an specific way, if this is your case too, you can override the layoutSubviews method to this one:
- (void)layoutSubviews {
[super layoutSubviews];
[self setBackgroundColor:[UIColor clearColor]];
}