Advertisement
Guest User

Untitled

a guest
Jun 26th, 2019
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.68 KB | None | 0 0
  1. UIColor *bgColor = [[UIColor alloc] initWithWhite:1 alpha:0.0];
  2. historyTable.backgroundColor = bgColor;
  3.  
  4. UIColor *bgColor = [[UIColor alloc] initWithWhite:1 alpha:0.0];
  5. historyTable.backgroundColor = bgColor;
  6.  
  7. historyTable.backgroundColor = [UIColor clearColor];
  8.  
  9. xxx.backgroundView = nil;
  10.  
  11. if ([self.tableView respondsToSelector:@selector(setBackgroundView:)]) {
  12. [self.tableView setBackgroundView:nil];
  13. }
  14.  
  15. [myTableView setBackgroundView:nil];
  16. [myTableView setBackgroundColor:[UIColor clearColor]];
  17.  
  18. [[UIColor alloc] initWithWhite:1 alpha:0.0];
  19.  
  20. [UIColor clearColor];
  21.  
  22. cell.backgroundColor = [UIColor clearColor];
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement