NSString stringWithFormat 百分号

发布于 2024-12-14 04:58:00 字数 142 浏览 1 评论 0原文

我搜索后找不到这个答案...

如果我有这个,我怎样才能让它显示最后的%符号?它只是在我的标签中省略了它。

[NSString stringWithFormat:@"Tries %i%", tries];

I searched and could not find this answer...

If I have this, how can I get it to display the final % symbol? It just omits it in my label.

[NSString stringWithFormat:@"Tries %i%", tries];

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

风透绣罗衣 2024-12-21 04:58:00

我想我可以贡献一点并分享这个综合列表 选项。杰西是
正确的!

就我而言,以下方法可以解决问题!

[NSString stringWithFormat:@"Progress: %.2f%%", progress*100] 
// progress is float ranging 0.0-1.0, 
//and I would like it to print up to 2 decimal point

快乐编码!

I thought I could contribute a bit and share this comprehensive list of options. Jesse is
right!

In my case, the following does the trick!

[NSString stringWithFormat:@"Progress: %.2f%%", progress*100] 
// progress is float ranging 0.0-1.0, 
//and I would like it to print up to 2 decimal point

Happy coding!

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文