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.
可能重复: 使用 unicode 的分数的 NSString 表示 在网站上使用分数
我正在将我的应用程序android从IOS. 在我的 android 应用程序中,我使用此代码来显示fractions
android
IOS
fractions
Html.fromHtml("<sup>" + top + "</sup>/<sub>" + bottom + "</sub>");
但我不知道如何做到这一点iOS
iOS
上面的 Html 代码在 android 中是什么样子的,请看图片
如果我是正确的,您要求格式化字符串,那么请在下面找到答案。将值视为浮点数,
NSString *fraction = [NSString stringWithFormat:@"%f / %f", top, bottom];
您可以将值设置为 UILabel 以显示目的。