gpt4 book ai didi

swift - 在 xcode8 中将上标放入标签中

转载 作者:行者123 更新时间:2023-11-30 12:11:12 26 4
gpt4 key购买 nike

我正在创建一个数学应用程序,并且想要一个上标 2。我一直无法找到不是基线偏移的 xcode 8 解决方案

finalFunc.text = "Converted: \(printA)(x+\(printB))^2+\(printC)" 

最佳答案

已更新为 Swift4

let font:UIFont? = UIFont(name: "Helvetica", size:20)
let fontSuper:UIFont? = UIFont(name: "Helvetica", size:10)
let attString:NSMutableAttributedString = NSMutableAttributedString(string: "xcode8", attributes: [NSAttributedString.Key.font:font!])
attString.setAttributes([NSAttributedString.Key.font:fontSuper!,NSAttributedString.Key.baselineOffset:10], range: NSRange(location:5,length:1))

labelname.attributedText = attString

关于swift - 在 xcode8 中将上标放入标签中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46031569/

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