将 NSLocalizedString 的翻译值插入数组

发布于 2024-12-19 12:27:24 字数 612 浏览 2 评论 0原文

我有一个包含一系列字典的 plist。

示例:

items: (array)
    item0: (dictionary)
        Label: (string)
        Img: (string)
    item1: (dictionary)
        Label: (string)
        Img: (string)

使用 NSLocalizedString 翻译标签。

通过这段代码,我将所有内容放入字典中,然后放入数组中。

NSString *myFile = [[NSBundle mainBundle] pathForResource:@"test" ofType:@"plist"];

NSDictionary *dict = [[NSDictionary alloc]initWithContentsOfFile:myFile];

NSMutableArray *arr = [[NSMutableArray alloc] initWithArray:[dict objectForKey:@"Items"]];

但是,如何将直接翻译的值而不是键放入数组中?

感谢大家!

I have a plist with an array of dictionaries.

example:

items: (array)
    item0: (dictionary)
        Label: (string)
        Img: (string)
    item1: (dictionary)
        Label: (string)
        Img: (string)

using NSLocalizedString, the labels are translated.

With this code, I put everything in a dictionary, and after into an array.

NSString *myFile = [[NSBundle mainBundle] pathForResource:@"test" ofType:@"plist"];

NSDictionary *dict = [[NSDictionary alloc]initWithContentsOfFile:myFile];

NSMutableArray *arr = [[NSMutableArray alloc] initWithArray:[dict objectForKey:@"Items"]];

How do I place into the array, however, the value directly translated, and not the key?

Thanks to all!

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

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

发布评论

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

评论(1

小耗子 2024-12-26 12:27:24

怎么样:

 NSMutableArray * arr = [[NSMutableArray alloc] initWithArray: [dict allValues]];

How about:

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