How can I create a transparent tableview with each cells being transparent?
Posted
by wolverine
on Stack Overflow
See other posts from Stack Overflow
or by wolverine
Published on 2010-04-28T10:16:14Z
Indexed on
2010/04/28
11:43 UTC
Read the original article
Hit count: 238
I tried all this inside
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
1.tableView.backgroundColor = [UIColor clearColor];
2.cell.backgroundColor = [UIColor clearColor];
3.cell.contentView.backgroundColor = [UIColor clearColor];
It only responds to the 1st line and makes the background a translucent kind of black. What should I do to get 100% transparency?
© Stack Overflow or respective owner