如何改变边框自定义边的颜色?

时间:2015-08-04 07:23:17

标签: ios swift uitextview

我想让TextView的底部边框可见。我该怎么办?

我可以在textView的底部显示,还是有另一种方法?

1 个答案:

答案 0 :(得分:1)

您可以为您的目标添加图层,但我不确定这是正确的方法。

+ (void)addBottomBorderToView: (UIView * ) view WithColor:(UIColor *)color andWidth:(CGFloat) borderWidth
{
    CALayer * bottomBorder = [CALayer layer];
    bottomBorder.borderColor = color.CGColor;
    bottomBorder.borderWidth = borderWidth;
    bottomBorder.frame = CGRectMake(0, view.frame.size.height - borderWidth, view.frame.size.width, borderWidth);
    [view.layer addSublayer:bottomBorder];
}