iOS 自定义UITextField 并且携带下划线颜色

outSubviews
{
    [self setNeedsDisplay];
}
- (void)drawRect:(CGRect)rect
{
    // Drawing code
    CGContextRef context=UIGraphicsGetCurrentContext();
    CGContextSetLineWidth(context, 10.0);
    //设置线的样式
    CGContextSetLineCap(context,  kCGLineCapRound);
    //设置开始画线
    CGContextBeginPath(context);
    //设置颜色
    CGContextSetRGBStrokeColor(context, 1.0, 0, 0, 1.0);
    
    CGContextMoveToPoint(context,0, 0);
    CGContextAddLineToPoint(context, self.frame.size.width,0.5);
    CGContextStrokePath(context);//开始绘制图片
    CGContextClosePath(context);
}
@end

 

你可能感兴趣的:(QuartzCore)