Utworzono tabBar
i ustawiłem w nim obraz, ale pozostawia on zbyt dużo miejsca poniżej tabBarItem
. Jak mogę to usunąć?Jak usunąć spację pod UITabBarItem?
To jest mój tabBar
niż wyświetlanie teraz
I chcę, aby wyświetlić go jak ten
Aby wyświetlić umieszczenie zakładek
firstVC = [[FirstViewController alloc] initWithNibName:@"FirstViewController" bundle:nil];
secondVC = [[SecondViewController alloc] initWithNibName:@"SecondViewController" bundle:nil];
thirdVC = [[ThirdViewController alloc] initWithNibName:@"ThirdViewController" bundle:nil];
forthVC = [[ForthViewController alloc] initWithNibName:@"ForthViewController" bundle:nil];
[[UITabBar appearance] setTintColor:[UIColor whiteColor]];
NSArray *viewControllersArray = [[NSArray alloc] initWithObjects:firstVC,secondVC,thirdVC,forthVC, nil];
self.tabController = [[UITabBarController alloc] init];
[self.tabController setViewControllers:viewControllersArray animated:NO];
[self.window addSubview:self.tabController.view];
//self.tabController.selectedIndex = 1;
self.tabController.delegate = self;
self.window.rootViewController = self.tabController;
[self.window makeKeyAndVisible];
Na umieszczenie zakładek tle obraz Użyłem ten kod
UIImage* tabBarBackground = [UIImage imageNamed:@"tabbarimg1.png"];
[[UITabBar appearance] setBackgroundImage:tabBarBackground];
I ustawić Imge w pozycji Użyłem ten kod
//used to set the tabBarItem images
[self.tabBarItem setFinishedSelectedImage:[UIImage imageNamed:@"home_tab"] withFinishedUnselectedImage:[UIImage imageNamed:@"home_tab"]];
//Set the badge on tabBarItem
[self.tabBarItem setBadgeValue:@"15"];
gdzie jest twój pasek zakładek? tak jak napisałeś "To jest mój tabbar, niż wyświetlany teraz" –
Czy jest jakiś problem, ponieważ dodałem do niego moje zdjęcie, wyświetla ono inny obraz, taki jak GTA vice city image .... Dziwne ... –
Hej @Kane Don pokaż tabbar ...... –