我有一个用于搜索短语的文本字段。此文本字段有一个占位符,文本稍长(日语)。在iPhone11上没有问题,但在SE上用...缩短了。我想知道如何设置此文本的自动缩放因子,如0.6。
...
uelo1irk1#
以编程方式使用占位符:
let attributedPlaceholder = NSAttributedString(string: yourText, attributes: [NSAttributedString.Key.foregroundColor: UIColor.darkGray]) label.adjustsFontSizeToFitWidth = true label.minimumScaleFactor = 0.6 label.attributedText = attributedPlaceholder
1条答案
按热度按时间uelo1irk1#
以编程方式使用占位符: