I have subclassed UITableViewCell class to add shadow below my cell. The shadow is added correctly, when TableView appears on screen. But, when I scroll tableview down, and cell with shadow hides above the screen, the shadow disappears.
- (void)layoutSubviews {
[super layoutSubviews];
if (self.shouldAddShadow) {
self.layer.shadowOpacity = 0.5;
self.layer.shadowRadius = 1.5;
self.layer.shadowOffset = CGSizeMake(0, 3);
self.layer.shadowColor = [[[UIColor appDarkDividerColor] colorWithAlphaComponent:0.9] CGColor];
[self setClipsToBounds:NO];
[self.layer setMasksToBounds:NO];
CGRect shadowFrame = self.layer.bounds;
CGPathRef shadowPath = [UIBezierPath bezierPathWithRect:shadowFrame].CGPath;
self.layer.shadowPath = shadowPath;
}
}
forgot to mention, that i have tableview with static cells; so prepareForReuse isn't called. I have outlets for my cells, so that i've also tried to set the shadow to my cell in scrollViewDidScroll: method. Even this din't help me
I just encountered this problem. Finally I find the way to make it work.
It doesn't disappear(removed), it was just been hidden.
There we use a property
zPosition
of cell's layer.The default value is
0
. This leads top cell hides the bottom cell (say shadow). It means if you set shadow for a view to make it show in both sides and the margin before two cell is zero, only bottom shadow of the top cell will show up, the top shadow of the bottom shadow will be hidden.When the cell goes out of the screen and then back, though the
zPosition
of each cell is still0
, for those cells, bottom cell hides top cell now. The hide direction is opposite to your scroll direction. This is exactly the situation you met.So,
For example, I want to show shadow of the siblings, I can set
zPosition
of this cell's layer to-1
, then shadow of both side will appear.zPosition
of a layer decide which cell can show in the front, and which shows in the back. Likez-index
in CSS.So the solution is change the zPosition property to make it work as you expected.
In addition, you should not set cell's
clipsToBounds
toYES
. (default value is NO)