NSLocalizedString 随机问题

发布于 2024-11-10 09:13:16 字数 194 浏览 3 评论 0原文

我对以下代码有一个奇怪的问题:

NSString *string = NSLocalizedString("hello",nil);

通过点击按钮激活。如果我使用一个简单的字符串一切正常,如果我在点击按钮 1-2 次后使用本地化字符串,应用程序崩溃而没有任何错误,我真的不明白为什么,你能帮助我吗? 谢谢。

i've a strange problem with following code:

NSString *string = NSLocalizedString("hello",nil);

actived by tapping a button. If i use a simple string all ok, if i use the localized string after 1-2 tap on the button the app crash without any error, i really don't understand why, can you help me?
Thanks.

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

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

发布评论

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

评论(2

风尘浪孓 2024-11-17 09:13:16

它很容易被忽略:你应该使用@“hello”,而不是“hello”。 NSString* 常量必须在 @ 之前定义。

It's easy to miss: you should use @"hello", not a "hello". NSString* constant must be defined with preceding @.

蓝戈者 2024-11-17 09:13:16

这有效:

NSString *string = NSLocalizedString(@"hello",@"");

This works:

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