Asihttprequest localizedDescription 始终为英文

发布于 2025-01-07 07:17:21 字数 165 浏览 1 评论 0原文

我使用 Asihttprequest 进行 HTTP 请求,我的应用程序将处理 3 种语言:阿拉伯语、法语和英语,但 Asihttprequest 错误 localizedDescription 始终返回英语描述。 Asihttprequest请求是否使用默认的ios系统本地化描述?如果是,我如何定位错误? 谢谢。

im using Asihttprequest for my HTTP request, and my app will handel 3 language : arabic, french and english but Asihttprequest error localizedDescription return always an english description.
is Asihttprequest request use the default ios systeme localisation description? if yes how can i localize error ?
thank you.

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

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

发布评论

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

评论(1

想你只要分分秒秒 2025-01-14 07:17:21

我不确定你到底要求什么,但你可以尝试一下。

在 ASIHttpRequest.m 文件 Initialize 方法中使用 NSLocalizedString(@"REQUESTTIMEOUT_KEY", @"The request timed out") 而不是 @"The request timed out"

在相应的 localized.strings 文件中包含 "REQUESTTIMEOUT_KEY" = "EngVersion:The request timed out";

示例代码:

ASIRequestTimedOutError = [[NSError alloc] initWithDomain:NetworkRequestErrorDomain code:ASIRequestTimedOutErrorType userInfo:[NSDictionary dictionaryWithObjectsAndKeys:NSLocalizedString(@"REQUESTTIMEOUT_KEY", @"The request timed out"),NSLocalizedDescriptionKey,nil]]; 

I am not sure of what exactly you asked for, but you can try this.

In the ASIHttpRequest.m file Initialize method use NSLocalizedString(@"REQUESTTIMEOUT_KEY", @"The request timed out") instead of @"The request timed out".

Have the "REQUESTTIMEOUT_KEY" = "EngVersion:The request timed out"; in the corresponding localizable.strings file.

Sample Code:

ASIRequestTimedOutError = [[NSError alloc] initWithDomain:NetworkRequestErrorDomain code:ASIRequestTimedOutErrorType userInfo:[NSDictionary dictionaryWithObjectsAndKeys:NSLocalizedString(@"REQUESTTIMEOUT_KEY", @"The request timed out"),NSLocalizedDescriptionKey,nil]]; 
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文