In my iPhone application I have a view with table view on it. I need to set opacity for some cell of the table. I have tried:
UIView *backView = [[UIView alloc] initWithFrame:CGRectZero];
backView.backgroundColor = [UIColor whiteColor];
tableViewCell.backgroundView = backView;
tableViewCell.backgroundView.alpha = 0.6f;
But I still not see the background of the view under table. How can I fix this?