我有一个.xib
文件,附带.strings
个不同语言的文件。 .xib
文件包含标签和UISegmentedControl
。
当要求IB本地化.xib
文件时,我收到以下.strings
文件:
"6.segmentTitles[0]" = "title1";
// ...More strings related to the segmented control...
"11.text" = "bla";
'bla'字符串属于标签。
更改'bla`字符串会反映在运行时,而更改'title1'字符串则不会。谁知道为什么?
答案 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。
不是很漂亮,但可以胜任。