ios – 自动更改字体大小以适应swift中的按钮

ios – 自动更改字体大小以适应swift中的按钮,第1张

概述我试过这个,但它不起作用,文本超出按钮边界. button.titleLabel!.adjustsFontSizeToFitWidth = truebutton.titleLabel!.numberOfLines = 0button.titleLabel!.minimumScaleFactor = 0.1 当我尝试以下 *** 作时,所有文本都适合,但文本仍然是小字体: button.titleLab 我试过这个,但它不起作用,文本超出按钮边界.
button.TitleLabel!.adjustsFontSizetoFitWIDth = truebutton.TitleLabel!.numberOflines = 0button.TitleLabel!.minimumScaleFactor = 0.1

当我尝试以下 *** 作时,所有文本都适合,但文本仍然是小字体:

button.TitleLabel!.Font = UIFont(name: "Heiti TC",size: 9)

如何让字体自动适合按钮的大小?

func nextQuestion() {    let currentQuestion = mcArray![questionIDx]    answers = currentQuestion["Answers"] as! [String]    correctAnswer = currentQuestion["CorrectAnswer"] as? String    question = currentQuestion["Question"] as? String    TitlesForbuttons()}func TitlesForbuttons() {    for (IDx,button) in answerbuttons.enumerate() {        button.TitleLabel!.lineBreakMode = .ByWorDWrapPing        button.TitleLabel!.Font = UIFont(name: "Heiti TC",size: 5)        button.TitleLabel!.numberOflines = 0        button.TitleLabel!.minimumScaleFactor = 0.1        button.TitleLabel!.baselineAdjustment = .AlignCenters        button.TitleLabel!.textAlignment  = NSTextAlignment.Center        button.setTitle(answers[IDx],forState: .normal)        button.enabled = true        button.backgroundcolor = UIcolor(red: 83.0/255.0,green: 184.0/255.0,blue: 224.0/255.0,Alpha: 1.0)    }    questionLabel.text = question    startTimer()}

这是我到目前为止的代码,它从pList文件中获取答案

解决方法 你可以试试这个:

1.根据按钮的当前字体大小定义标题大小

let nsTitle = Nsstring(string:"yourbuttonTitle")let Font = button.TitleLabel?.Fontlet TitleSize = nsTitle.sizeWithAttributes([NSFontAttributename:Font])

2.检查您的标题是否适合按钮标题标签:

if TitleSize.wIDth > button.TitleLabel?.bounds.wIDth{    //set the appropriate Font size}else{    //set the appropriate Font size or do nothing}
总结

以上是内存溢出为你收集整理的ios – 自动更改字体大小以适应swift中的按钮全部内容,希望文章能够帮你解决ios – 自动更改字体大小以适应swift中的按钮所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1105000.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-28
下一篇 2022-05-28

发表评论

登录后才能评论

评论列表(0条)

保存