NSLocalizedString 随机问题
我对以下代码有一个奇怪的问题:
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
它很容易被忽略:你应该使用@“hello”,而不是“hello”。 NSString* 常量必须在 @ 之前定义。
It's easy to miss: you should use @"hello", not a "hello". NSString* constant must be defined with preceding @.
这有效:
This works: