我尝试使用
在UITabController上为多语言设置tababritem的标题self.viewControllers[0].title= NSLocalizedString(@"myTitle",@"") ;
但据报道,标题不是纳斯瑞的标题。
欢迎任何评论
由于
InterDev中
答案 0 :(得分:2)
您无法使用方括号访问NSArray的元素。 这是您需要的代码
UIViewController *theViewController = (UIViewController *)[self.viewControllers objectAtIndex:0];
theViewController.title = NSLocalizedString(@"myTitle",@"");