我无法从values
获取keys
InfoPlist
。
label.text = NSLocalizedStringFromTableInBundle(@"keyone",
nil,
AppDelegateObj.langBundle, nil));
在InfoPlist.strings
中有一个值
"keyone" = "value one";
当我运行我的应用时,它显示UILabel
值为 keyone
为什么?
答案 0 :(得分:5)
试试这个:
label.text = NSLocalizedStringFromTableInBundle(@"keyone",
@"InfoPlist",
AppDelegateObj.langBundle, nil));