Tableview:添加阴影

时间:2016-03-20 15:15:46

标签: uitableview uikit

我的设计师让我在我的tableview的单元格中添加一个阴影,如下所示:

enter image description here

目前我已经实现了所有功能,甚至是Top |最新的标题视图。如何在每个tableviewsection的末尾添加这样的阴影?

1 个答案:

答案 0 :(得分:0)

以下是我的解决方案。在这种情况下,请不要忘记设置您的观看backgroundColor即使whiteColorshadowOpacity。 并在cellSubView周围留出额外空间以显示阴影。 您可以根据需要设置适当的值而不是地雷。 希望这会有所帮助。

cellSubView.backgroundColor = [UIColor whiteColor];
cellSubView.layer.shadowColor = [UIColor blackColor].CGColor;
cellSubView.layer.shadowOpacity = 0.5;
cellSubView.layer.shadowOffset = CGSizeMake(0,10);
cellSubView.layer.shadowRadius = 3;