"Just a title of an item"
Hi guys,
i hope someone can help me. my szenario:
MainWindow.xib looks like the attachment.
if you see in the picture, there is a "Tab Bar Item - Customers".
I just want to set the title of "Tab Bar Item - Customers" when my app starts.
When i put my code into the "customers View Controller" like this:
- (void)viewDidLoad
{
[super viewDidLoad];
self.title = @"Some text";
}
When my app starts the text wasn´t set. But if i click the "Tab Bar Item - Customers" then the tabbar item becomes the title of "Some text".
I know it is just a little thing, but i tried many things without a solution.
Can somebody help me?
|