NSLocalizedStringFromTableInBundle:没有获取key的值

时间:2012-10-23 10:34:18

标签: ios iphone nslocalizedstring localizable.strings

我无法从values获取keys InfoPlist

label.text = NSLocalizedStringFromTableInBundle(@"keyone", 
                                                nil, 
                                                AppDelegateObj.langBundle, nil));

InfoPlist.strings中有一个值

"keyone" = "value one";

当我运行我的应用时,它显示UILabel值为 keyone

为什么?

1 个答案:

答案 0 :(得分:5)

试试这个:

label.text = NSLocalizedStringFromTableInBundle(@"keyone", 
                 @"InfoPlist", 
                 AppDelegateObj.langBundle, nil));