IOS15给UITextFieldPlaceHolder文本框颜色设置白色
问题来源
Xnip2022-01-06_10-55-19.jpg
直接自定义一个类,继承UITextField, 里面书写
[super awakeFromNib];
//光标颜色
self.tintColor = [UIColor whiteColor];
NSDictionary *attrDict = @{
NSForegroundColorAttributeName: [UIColor whiteColor]
};
self.attributedPlaceholder = [[NSAttributedString alloc]initWithString:self.placeholder attributes:attrDict];
}
网友评论