CALayer shadow in UITableViewCell Drawn incorrectly
You can override the setter for you're cell's frame and call addShadowToView:
. You can optimize this more by storing your cell's size and only updating the shadow path when the size changes for example:
@property (nonatomic, assign) CGSize size;
And
- (void) setFrame:(CGRect)frame
{
[super setFrame:frame];
// Need to check make sure this subview has been initialized
if(self.subviewThatNeedsShadow != nil && !CGSizeEqualToSize(self.size,_frame.size)
{
[self addShadowToView: self.subviewThatNeedsShadow];
}
}