I can access the the layer of the cell and update it background by this code:
if(cell.layer.sublayers.count < 3){
CAGradientLayer *gradient = [CAGradientLayer layer];
gradient.frame = cell.bounds;
gradient.colors = [NSArray arrayWithObjects:(id)topGold.CGColor, (id)bottomSilver.CGColor, nil];
[cell.layer insertSublayer:gradient atIndex:0];
}
But i dunno how to access the sub -UIView (title) contained inside the cell (cardCell), because I want to update the background of the view (title) background by layer too