可能重复:
NSString representation of fractions using unicode
Using Fractions On Websites
我正在将我的应用程序从android
移植到IOS
。在我的Android应用程序中,我使用此代码显示fractions
Html.fromHtml("<sup>" + top + "</sup>/<sub>" + bottom + "</sub>");
但我不知道如何在iOS
在android中看到上面的Html代码看到的图片
答案 0 :(得分:1)
如果我正确要求您格式化字符串,请在下面找到答案。 将值视为float,
NSString *fraction = [NSString stringWithFormat:@"%f / %f", top, bottom];
您可以将值设置为UILabel以显示目的。