solved. Use the following code to create a very nice, subtle shadow at the bottom of your UITableViewCell . Pretending to be slightly raised from the page :)
UIView* separatorLineView = [[UIView alloc] initWithFrame:CGRectMake(3, 49, cell.frame.size.width-26, 3)];
Also, be sure to put this at the top of your .m file #import <QuartzCore/QuartzCore.h>
Apollo
source share