JVfloatLabel文本字段库的动态下划线?

时间:2018-01-06 05:33:32

标签: ios objective-c textfield

我刚开始研究目标c。在我的一个项目中,我实现了一个库,如下面的链接所示。

https://github.com/jverdi/JVFloatLabeledTextField

我想知道是否有任何方法可以在文本字段中实现下划线,如下面的链接所示。

https://github.com/Skyscanner/SkyFloatingLabelTextField/blob/master/SkyFloatingLabelTextField/images/showcase-example.gif

提前感谢。

1 个答案:

答案 0 :(得分:1)

textfield点击

-(void)viewWillAppear:(BOOL)animated{
      [textfieldname addTarget:self action:@selector(textFieldDidChange:) forControlEvents:UIControlEventEditingChanged];
}

返回Textfiled颜色变化

- (void)textFieldDidChange:(UITextField *)textfield{
    CALayer *border = [CALayer layer];
    CGFloat borderWidth = 2;
    border.borderColor =[UIColor colorWithRed:111.0f/255.0f green:111.0f/255.0f blue:111.0f/255.0f alpha:1.0].CGColor;
    border.frame = CGRectMake(0, textfield.frame.size.height - borderWidth, textfield.frame.size.width, textfield.frame.size.height);
    border.borderWidth = borderWidth;
    [textfield.layer addSublayer:border];
    textfield.layer.masksToBounds = YES;
}

https://stackoverflow.com/a/15489967/9137841检查一下它可能对你有所帮助