下方代码在ios13 中会崩溃

//[ self.contentTextField setValue:KRGBColor(154, 154, 154, 1.0) forKeyPath:@"_placeholderLabel.textColor"];
//[ self.contentTextField setValue:[UIFont systemFontOfSize:13.0] forKeyPath:@"_placeholderLabel.font"];
//UITextField *textfield = [[UITextField alloc]init];

调整方法,通过attributedPlaceholder属性

NSMutableAttributedString *arrStr = [[NSMutableAttributedString alloc]initWithString:self.contentTextField.placeholder attributes:@{NSForegroundColorAttributeName : KRGBColor(154, 154, 154, 1.0),NSFontAttributeName:[UIFont systemFontOfSize:13.0]}];
self.contentTextField.attributedPlaceholder = arrStr;

标签: _placeholderLabel, attributedPlaceholder 属性


阿里云优惠主机

添加新评论

免责声明
本博客部分内容来自于互联网,不代表作者的观点和立场,如若侵犯到您的权益,请联系[email protected]。我们会在24小时内进行删除。