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.
NSString 对象中是否有可能显示在 UITextField 和 UILabel 中的指数?如果是这样,我们该怎么做?如果没有,您可能会建议任何替代方案?
正如jrturton在这个问题中回答的那样:
您需要包含上标字符的 unicode 符号:
NSInteger number = 10; NSString *cubedSymbol = @"\u00B3"; NSString *tenCubed = [NSString stringWithFormat:@"%d%@",number,cubedSymbol];
在这里可以享受更多乐趣