UITableCell's border clips shadow of its image content

310 Views Asked by At

I am trying to add shadow to an UIImage that is inside a UITableViewCell. I configured image using UIBezierPath to draw a shadow around its bounds. The shadow appear on either side of the image but the shadow on the top of image is clipped by the table view cell's border because there is no space between image's top and the table cell's border. I cannot have space between image's top and border because these cells are collapsible and will clip lower parts of the image to make it look like a carousel of cards stacked one on the top of another. Here is the code I am using to generate shadows:

let shadowPath = UIBezierPath(rect: self.bounds)
layer.masksToBounds = false
self.clipsToBounds = false
layer.shadowColor = UIColor.blackColor().CGColor
layer.shadowOffset = CGSizeMake(0.0, -3.0)
layer.shadowOpacity = 0.1
layer.shadowRadius = 0.56
layer.shadowPath = shadowPath.CGPath

Here is a screenshot of what I'm trying to achieve: Carousel view of the cards

What I've done so far is dynamically load table cells with images of cards, hide overflow of image that are greater than the height of the cells, increase height of cells on tap so that the tapped card pushes other cards below it by increasing the height of the cell and come to full view mode.

The problem is the shadows on top of the card gets hidden because maybe it tresspasses into the cell above it?

I understand that my entire approach might be wrong on this one, so I'm open to any suggestions. Please help.

UPDATE

https://github.com/gleue/TGLStackedViewController -> TGLStackedViewController

This view controller is exactly what I want plus shadows on top. Now I've come to realize that I do not need to render shadows while viewing but adding shadows while saving image will do. It is more efficient as well because the app does not have to draw the shadows every time the image is being displayed The problem however, is, this library is written in ObjC and is compatible with iOS9+ only.

0

There are 0 best solutions below