I'm trying to update the tabBarItem more than once, but I can't get it to work.
I've used theese methods:
self.tabBarItem = [[[UITabBarItem alloc] initWithTitle:@"New title" image:image tag:0] autorelease];
and:
self.tabBarItem.title = @"New title";
self.tabBarItem.image = image;
And they work, but only once. So now I'm stuck.
Any help is appreciated.
Thanks