i have one tableview with style grouped. in this i set background color clearcolor
like this , cell.backgroundColor =[UIColor blackColor];
now i want this cell transparent. may be i can do this with opacity. but in this how can i set opacity.
i want same like this for cell background >>

here opacity . how can i do same this by coding in cell background ?
You can use
cell.alpha = 0;then your cell is invisible but all textLabels etc. to.If you want only the cell.backgroundColor a bit transparent you can use
cell.backgroundColor = [UIColor colorWithRed:0. green:0.39 blue:0.106 alpha:0.]