UISegmentedControl和本地化

时间:2012-10-14 17:36:37

标签: localization ios6 uisegmentedcontrol

我有一个.xib文件,附带.strings个不同语言的文件。 .xib文件包含标签和UISegmentedControl

当要求IB本地化.xib文件时,我收到以下.strings文件:

"6.segmentTitles[0]" = "title1";
// ...More strings related to the segmented control...
"11.text" = "bla";

'bla'字符串属于标签。

更改'bla`字符串会反映在运行时,而更改'title1'字符串则不会。谁知道为什么?

1 个答案:

答案 0 :(得分:3)

这个问题并不新鲜,但由于它仍然没有任何答案,我会添加我的解决方案,因为它可能会帮助其他人。

一般来说,正如上面提到的,UISegmentedControl片段标题没有获取本地化字符串是一个开放的错误。

- (void)viewDidLoad
{
    ...

    // Locale will be picked automatically by NSBundle.
    NSString *resourcePath  =[[NSBundle mainBundle] pathForResource:@"MainStoryboard" ofType:@"strings"];
    NSDictionary *resourceDict = [NSDictionary dictionaryWithContentsOfFile:resourcePath];
    [self.segmentedControl setTitle:[resourceDict objectForKey:@"COo-BO-Ryl.segmentTitles[0]"] forSegmentAtIndex:0];
    [self.segmentedControl setTitle:[resourceDict objectForKey:@"COo-BO-Ryl.segmentTitles[1]"] forSegmentAtIndex:1];

}

其中COo-BO-Ryl是segmentedControl的对象ID。

不是很漂亮,但可以胜任。