gpt4 book ai didi

ios - 从本地化的 .strings 中检索存储的 plist 值的标题

转载 作者:行者123 更新时间:2023-11-28 20:04:04 33 4
gpt4 key购买 nike

检索存储在 Root.strings 中的 Root.plist 值的标题的最佳方法是什么?例如,我存储了一个 INT = 1,它有一个 MUL_VAL_2 键,对应于 Root.strings 中的“女声”。如何为存储的 INT 检索“女声”?

 // Root.strings     
"MUL_VALUE_TITLE" = "Multiple Values";
"MUL_VAL" = "Sound Theme";
"MUL_VAL_1" = "Male Voice";
"MUL_VAL_2" = "Female Voice";
"MUL_VAL_3" = "Mechanical";


// Root.plist
<plist version="1.0">
<dict>
<key>Titles</key>
<array>
<string>MUL_VAL_1</string>
<string>MUL_VAL_2</string>
<string>MUL_VAL_3</string>
</array>
<key>Type</key>
<string>PSMultiValueSpecifier</string>
<key>Values</key>
<array>
<integer>0</integer>
<integer>1</integer>
<integer>2</integer>
</array>
<key>Title</key>
<string>MUL_VAL</string>
<key>Key</key>
<string>timer_theme_mulValue</string>
<key>DefaultValue</key>
<integer>0</integer>
</dict>

最佳答案

您可以使用 IASK 自己的逻辑来检索本地化字符串:

[settingsViewController.settingsReader titleForStringId:@"MUL_VAL_1"]

关于ios - 从本地化的 .strings 中检索存储的 plist 值的标题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22739802/

33 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com