Quote:
Originally Posted by DorkyMohr
Solution:
It looks like setting it with code does the trick, the only issue was that the code wasn't being called at the right time for me. Make sure you got it in a viewDidLoad function like so:
Code:
- (void)viewDidLoad{
table.backgroundColor = [UIColor clearColor];
}
|
Wow, very simple, You would be surprised at how many suggestions I went through that were much more complicated than this and never seemed to work. This was perfect for my app, worked like a charm. Thanks Dorky!