I have a TabBarController set as main controller tab, where names were defined using interface builder. Now I would like to change its names programmatically.
How c
In your viewController.m
- (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil { self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil]; if (self) { //Here you are setting title self.title = NSLocalizedString(@"Title", @"Title"); } return self; }