美文网首页
ios13 _placeholderLabel.textCol

ios13 _placeholderLabel.textCol

作者: Mr_LS | 来源:发表于2020-08-07 09:51 被阅读0次

    [self.verifyCodeTF setValue:WHITE_COLOR forKeyPath:@"_placeholderLabel.textColor"];
    在ios13中设置占位颜色闪退解决方法:

    UITextField有个attributedPlaceholder的属性,我们可以自定义这个富文本来达到我们需要的结果。

    NSMutableAttributedString *placeholderString = [[NSMutableAttributedString alloc] initWithString:placeholder attributes:@{NSForegroundColorAttributeName : self.placeholderColor}];
    _textField.attributedPlaceholder = placeholderString;

    相关文章

      网友评论

          本文标题:ios13 _placeholderLabel.textCol

          本文链接:https://www.haomeiwen.com/subject/uobrrktx.html