How to set Tabbar integration in iPhone?
- by Minu
I am working on an iPhone app, using UITabBar to develop it. Only the tabbar background is visible, but it is not showing the title inside, how to fix this? please help me,
Thanks in Advance.
below is the source code for your reference.
UITabBar *tab =[[UITabBar alloc]initWithFrame:CGRectMake(0, 300, 320, 44)];
[self.tabBarItem initWithTitle:@"1" image:nil tag:11];
[self.tabBarItem initWithTitle:@"2" image:nil tag:11];
[self.tabBarItem initWithTitle:@"3" image:nil tag:11];
[self.view addSubview:tab];