通过覆盖drawRect方法在UITableViewCell上绘图

时间:2014-02-14 11:39:11

标签: ios uitableview ios7 drawrect uibezierpath

我编写了以下代码来提供圆角到顶部的tableViewCell。它适用于iOS 6。但对于iOS 7,它并没有引起争议。

       UIBezierPath* roundedRectanglePath = [UIBezierPath bezierPathWithRoundedRect: CGRectMake(0, 0, self.frame.size.width, self.frame.size.height) byRoundingCorners: UIRectCornerTopLeft | UIRectCornerTopRight cornerRadii: size];
    [[UIColor whiteColor] setFill];
    [roundedRectanglePath fill];
    [[UIColor lightGrayColor] setStroke];
    roundedRectanglePath.lineWidth = 1;
    [roundedRectanglePath stroke];

0 个答案:

没有答案