I'm trying to apply an inner shadow like in the Apple Reminder app (see in particular the Lists table view).
I would like to do the drawing using Quartz instead of using an UIImageView. The main problem is that if I override drawRect of the UITableView the result of the drawing will be overlapped by the table cells and won't be visible, the same trying to add a new CALayer to the table.
How would you recreate this effect?