Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在我的 iOS 应用程序的 Nib 文件中设置了一个 UIButton。我想将按钮的文本设置为等式:
myUIButton.text = @"x^3 + x^2 + x^1 + k";
允许上标真的很好。我怎样才能做到这一点?我是否应该考虑添加权力的 unicode 值以获得相应的上标字符?
任何 Unicode 字符都可以使用。您是否尝试过以下操作?
myUIButton.text = @"x\u00B3 + x\u00B2 + x\u00B9 + k";
这是上标 Unicode 值的链接