我正在开发一个 iPhone 应用程序,使用 UITabBar 来开发它。标签栏中只有第二个标签栏标题可见,但第一个标签栏标题不显示在标签栏中,如何解决这个问题?请帮助我,在此先感谢。
以下是供您参考的源代码。
NSMutableArray *items = [[NSMutableArray alloc]init];
tab =[[UITabBar alloc]initWithFrame:CGRectMake(0, 300, 320, 44)];
[self.tabBarItem initWithTitle:@"sample1" image:nil tag:111];
[items addObject:self.tabBarItem];
[self.tabBarItem initWithTitle:@"sample2" image:nil tag:101];
[items addObject:self.tabBarItem];
[tab setItems:items animated:YES];
[self.view addSubview:tab];