Guest User

Untitled

a guest
Jan 18th, 2019
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.48 KB | None | 0 0
  1. UIImageView *av = [[UIImageView alloc] initWithFrame:CGRectMake(500, 500, 500, 500)];
  2. av.backgroundColor = [UIColor clearColor];
  3. av.opaque = NO;
  4. av.image = [UIImage imageNamed:@"cell.png"];
  5. cell.backgroundView = av;
  6.  
  7. theCell.backgroundView = [[[UIImageView alloc] initWithImage:[UIImage imageNamed:@"cell_normal.png"]] autorelease];
  8.  
  9. Cell.backgroundView = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"ImageName"]];
  10.  
  11. cell.textLabel.backgroundColor = [UIColor clearColor];
Add Comment
Please, Sign In to add comment