You need to make a "TabBarItem" in the view controller in each space.
So in the init function for the root view controller of each tab bar item:
UIImage* anImage = [UIImage imageNamed:@"tabicon.png"];
UITabBarItem* theItem = [[UITabBarItem alloc] initWithTitle:@"Your custom text" image:anImage tag:0];
self.tabBarItem = theItem;
[theItem release];
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…