如何在UITabbarController中设置标签栏项的标题

时间:2011-02-19 23:10:42

标签: iphone

我尝试使用

在UITabController上为多语言设置tababritem的标题
self.viewControllers[0].title=  NSLocalizedString(@"myTitle",@"")  ;

但据报道,标题不是纳斯瑞的标题。

欢迎任何评论

由于

InterDev中

1 个答案:

答案 0 :(得分:2)

您无法使用方括号访问NSArray的元素。 这是您需要的代码

UIViewController *theViewController = (UIViewController *)[self.viewControllers objectAtIndex:0];
theViewController.title =  NSLocalizedString(@"myTitle",@"");