Hi
I'm trying to add a shadow to a uitabelviewcell using the layer.shadowColor, Offset, Radius but it doesn't seem to affect it in anyway. The table is grouped style. Any ideas why?
Here is the code i'm using:
cell.layer.shadowColor= [UIColor blackColor].CGColor;
cell.layer.shadowRadius = 5.0;
cell.layer.shadowOffset = CGSizeMake(10, 10);