gpt4 book ai didi

ios - UITextField 占位符和文本大小应该分开 - Swift

转载 作者:可可西里 更新时间:2023-11-01 00:54:16 26 4
gpt4 key购买 nike

我的要求是,当文本字段的占位符可见时,它的颜色应该是灰色,字体大小为 10,但是当用户开始在文本字段中输入时,它的颜色应该是黑色,字体大小为 14。我试过这个:

textField.attributedPlaceholder = NSAttributedString(string: placeholderText,
attributes: [NSAttributedString.Key.foregroundColor: Color.iPhoneGrayColor, NSAttributedString.Key.font: UIFont(name: "SourceSansPro-Regular", size: 10)!])
textField.textColor = UIColor.black
textField.font = UIFont(name: "SourceSansPro-Regular", size: 14)!

但是,我的占位符字体大小被 textfield.font 覆盖,所以我无法获得 10 号的占位符。我哪里出错了?现在试了几个小时。任何帮助将不胜感激。

最佳答案

只需在设置字体后设置占位符,因为设置字体也适用于占位符(参见https://developer.apple.com/documentation/uikit/uitextfield/1619604-font):

textField.font = ...
textField.textColor = ...

textField.attributedPlaceholder = ...

关于ios - UITextField 占位符和文本大小应该分开 - Swift,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54418571/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com