ios - UItextfield怎么做成下划线样式的?输入的文本在下划线上面?
阿神
阿神 2017-04-17 13:54:51
0
1
614

像这样。

阿神
阿神

闭关修行中......

全部回覆(1)
小葫芦

方法不只一種,可以用category,可以直接騙用戶,可以...這裡說一種繼承,步驟如下:
1)繼承UITextfield
2)重寫子類別中的- (void)drawRect:(CGRect)rect 如下

- (void)drawRect:(CGRect)rect {
    CGContextRef context = UIGraphicsGetCurrentContext();
    CGContextSetFillColorWithColor(context, [UIColor blackColor].CGColor);
    CGContextFillRect(context, CGRectMake(0, CGRectGetHeight(self.frame) - 0.5, CGRectGetWidth(self.frame), 0.5));
}

3)TestCode 如下:

#import "CustomField.h"
@implementation ViewController
- (void)viewDidLoad {
    [super viewDidLoad];
    // Do any additional setup after loading the view, typically from a nib.
    CustomField *textField = [CustomField new];
    textField.frame = CGRectMake(0, 200, 100, 30);
    textField.backgroundColor = [UIColor yellowColor];
    [self.view addSubview:textField];
}

4)效果圖:

熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板