如何在UIButton中上标字符?

时间:2012-05-02 02:40:26

标签: objective-c ios

我在iOS应用的Nib文件中设置了UIButton。我想将按钮的文本设置为等式:

myUIButton.text = @"x^3 + x^2 + x^1 + k";

允许上标是非常好的。我怎样才能做到这一点?我应该考虑添加功能的unicode值来获取相应的上标字符吗?

1 个答案:

答案 0 :(得分:5)

任何Unicode字符都应该有效。你试过以下了吗?

myUIButton.text = @"x\u00B3 + x\u00B2 + x\u00B9 + k";

Here is a link for superscript Unicode values