gpt4 book ai didi

ios - 如何在 UILabel 中显示表达程度? ( swift )

转载 作者:行者123 更新时间:2023-11-28 07:01:32 25 4
gpt4 key购买 nike

我有一个显示表达式的标签:

(x+y)

但我想在这样的标签中显示它:

(x+y)^2

(但是有学位,我这里做不到,因为我声望太低,不能插入图片)

所以,我想在 UIlabel 中显示表达的程度。可以使用单个 UILabel 吗?

最佳答案

你可以使用上标两个\u00B2的Unicode字符,它总是\u后跟字符代码。

NSString *equation = [NSString stringWithFormat:@"(x+y)%@", @"\u00B2"];

swift :

var equation = NSString(format:"(x+y)%@",  "\u{00B2}") as String

结果:

Unicode

http://unicode-table.com/en/

Strings and Characters (苹果 iOS 开发者库)

Strings in Swift

关于ios - 如何在 UILabel 中显示表达程度? ( swift ),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31895590/

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