tags:

views:

27

answers:

2

i can display BG image in table view cell but when i click any cell there is a blue color filling all my cell and my images just goes behind now i want to show my image in front of that blue color how to do that??

cell.backgroundView = [[[UIImageView alloc] initWithImage:[UIImage imageNamed:@"SuperCell.png"]] autorelease];
A: 

Maybe you can use

cell.selectionStyle = UITableViewCellSelectionStyleNone;

and

cell.selectedBackgroundView = [[[UIImageView alloc] initWithImage:[UIImage imageNamed:@"SuperCell.png"]] autorelease];
logovazz
thanks a lot :)
ram
A: 

hey i want to show table secletcd when pressed but that highlight should be on back side of png not in front??

ram