细胞的圆形边缘比细胞的顶部和底部更薄

时间:2015-05-18 10:02:03

标签: ios swift uicollectionviewcell

我有一个奇怪的问题,当我制作圆角的单元格时,圆角比顶部和底部更薄我只是这样做:

        cell.layer.borderWidth = 0.5
        cell.layer.cornerRadius = 9

        cell.layer.borderColor = redCellColor.CGColor

here is an example

1 个答案:

答案 0 :(得分:0)

使用drawRect而不是应用角半径。

这是一个类似的问题,解决方案: How to get rid of thin border in a UIView rounded with layer.cornerRadius in iOS 7.1.1?