实现卡片样式的 table cell 设置 shadow 时候显示异常
写了个 Demo ,放在 https://github.com/neil-wu/TestCardShadow
问题:初始化显示后, shadow 的位置并不正确,如下图,需要再次 reload 一下就正常了。
有遇到过类似问题的朋友,求指导。
大家都是怎么实现类似的阴影效果呢?
这个 Demo 没有出现的另外一个问题是:滑动 table 后, cell 重新出现时它的阴影看不到了。
设置 shadow 的代码如下:
let shadowLayer = self.cardBgView.layer
shadowLayer.shadowOffset = CGSizeMake(1, 1)
shadowLayer.shadowRadius = 3.0
shadowLayer.shadowColor = UIColor.grayColor().CGColor
shadowLayer.shadowOpacity = 0.5
let shadowSize = self.cardBgView.bounds.size
shadowLayer.shadowPath = UIBezierPath(rect: CGRectMake(2, 2, shadowSize.width, shadowSize.height)).CGPath
这是一个专为移动设备优化的页面(即为了让你能够在 Google 搜索结果里秒开这个页面),如果你希望参与 V2EX 社区的讨论,你可以继续到 V2EX 上打开本讨论主题的完整版本。
V2EX 是创意工作者们的社区,是一个分享自己正在做的有趣事物、交流想法,可以遇见新朋友甚至新机会的地方。
V2EX is a community of developers, designers and creative people.