美文网首页
下划线样式的textField

下划线样式的textField

作者: 飞不飞 | 来源:发表于2016-12-22 16:02 被阅读0次

    继承textField重写drawRect

    - (void)drawRect:(CGRect)rect {

    CGContextRefcontext =UIGraphicsGetCurrentContext();

    //设置下划线的颜色

    CGContextSetFillColorWithColor(context, [UIColorredColor].CGColor);

    //设置textField的frame

    CGContextFillRect(context,CGRectMake(0,CGRectGetHeight(self.frame) -0.5,CGRectGetWidth(self.frame),0.5));

    }

    相关文章

      网友评论

          本文标题:下划线样式的textField

          本文链接:https://www.haomeiwen.com/subject/tvchvttx.html