【发布时间】:2016-08-21 08:28:24
【问题描述】:
【问题讨论】:
-
最简单的解决方案?使用已经有圆角的背景。
-
这看起来更像是一个UICollectionViewController,你应该试试
标签: ios swift uitableview
【问题讨论】:
标签: ios swift uitableview
你可以在谷歌搜索它,但要设置角落:
var customerLayer = UIBezierPath(roundedRect: self.bounds, byRoundingCorners: [.TopLeft , .BottomRight], cornerRadii: 10)
self.layer.addSublayer(customerLayer)
【讨论】: