文本编辑框光标颜色和占位文字颜色自定义

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了文本编辑框光标颜色和占位文字颜色自定义相关的知识,希望对你有一定的参考价值。

1.自定义一个自己的UITextField类,在类中实现如下代码:

方法一:利用UITextField属性attributedPlaceholder直接设置

-(void)awakeFromNib{

    [super awakeFromNib];
    //光标颜色
    self.tintColor = [UIColor whiteColor];
    //占位文字颜色
    [self addTarget:self action:@selector(startEditTextField) forControlEvents:UIControlEventEditingDidBegin];
    [self addTarget:self action:@selector(endEditTextField) forControlEvents:UIControlEventEditingDidEnd];
    
}

-(void)startEditTextField{
    
    NSMutableDictionary *dict = [[NSMutableDictionary alloc] init];
    dict[NSForegroundColorAttributeName] = [UIColor whiteColor];
    
    self.attributedPlaceholder = [[NSAttributedString alloc] initWithString:self.placeholder attributes:dict];
}

-(void)endEditTextField{
    NSMutableDictionary *dict = [[NSMutableDictionary alloc] init];
    dict[NSForegroundColorAttributeName] = [UIColor grayColor];
    
    self.attributedPlaceholder = [[NSAttributedString alloc] initWithString:self.placeholder attributes:dict];
}

方法二:利用用KVC获取TextField系统属性设置

-(void)awakeFromNib{

    [super awakeFromNib];
    //光标颜色
    self.tintColor = [UIColor whiteColor];
    //占位文字颜色
    [self addTarget:self action:@selector(startEditTextField) forControlEvents:UIControlEventEditingDidBegin];
    [self addTarget:self action:@selector(endEditTextField) forControlEvents:UIControlEventEditingDidEnd];
    
    
}

-(void)startEditTextField{
    
    UILabel *placeholderLabel = [self valueForKey:@"placeholderLabel"];//方法实现:首先找有没有这样的get方法,没有则继续找placeholderLabel这个成员属性,还没有则接着找_placeholderLabel
    placeholderLabel.textColor = [UIColor whiteColor];

    
}

-(void)endEditTextField{
    
    UILabel *placeholderLabel = [self valueForKey:@"placeholderLabel"];
    placeholderLabel.textColor = [UIColor grayColor];
}

 

以上是关于文本编辑框光标颜色和占位文字颜色自定义的主要内容,如果未能解决你的问题,请参考以下文章

ppt中有链接文字怎么才能不改颜色?

百思不得姐第4天:文本框占位文字颜色

iOS开发中设置UITextField的占位文字的颜色,和光标的颜色

调整TextField占位文字颜色

改变设置文本框占位文字和图片

更改自定义文本字段背景颜色和文本颜色IOS Swift