У меня есть TabBarController с 4 вкладками. Когда я нажимаю ViewController на вкладке, вкладка скрывается автоматически и ее ничего не отображается в представлении. Но ViewController содержит таблицу с данными. Я также внедрил делегат tableview. Я не получаю журналы делегатов таблицы.iOS 9.0 Tabbar hide автоматически и viewcontroller исчезают в push
в AppDelegate didFinishLaunchingWithOptions()
self.window = [[UIWindow Alloc] initWithFrame: [[UIScreen В начало] границы]];
нагрузки TabBar здесь:
myAppDelegate.myTabBarController.selectedIndex = 0;
myAppDelegate.myTabBarController.tabBar.translucent = NO;
myAppDelegate.myTabBarController.tabBar.opaque = YES;
location_select *tab1 = [[location_select alloc] initWithNibName:@"location_select" bundle:nil];
tab1.tabBarItem.image = [UIImage imageNamed:@"Restaurants.png"];
location_select *tab2 = [[location_select alloc] initWithNibName:@"location_select" bundle:nil];
tab2.title = @"Cart";
tab2.tabBarItem.image = [UIImage imageNamed:@"Cart.png"];
Deal_ViewController *tab3 = [[Deal_ViewController alloc] initWithNibName:@"Deal_ViewController" bundle:nil];
tab3.title = @"Deals";
tab3.tabBarItem.image = [UIImage imageNamed:@"Deals.png"];
MoreViewController *tab4 = [[MoreViewController alloc] initWithNibName:@"MoreViewController" bundle:nil];
tab4.title = @"More";
tab4.tabBarItem.image = [UIImage imageNamed:@"More.png"];
myAppDelegate.myTabBarController.viewControllers = [NSArray arrayWithObjects:tab1,tab2,tab3,tab4,nil];
[myAppDelegate.rootNav pushViewController:myAppDelegate.myTabBarController animated:YES];
Из Tab 4, я толкать Profile_ViewController:
Profile_ViewController *vc = [[Profile_ViewController alloc] initWithNibName:@"Profile_ViewController" bundle:[NSBundle mainBundle]];
[self.navigationController pushViewController:vc animated:YES];
И уже я применил здесь:
myAppDelegate.myTabBarController.hidesBottomBarWhenPushed=NO;
and
[self.tabBarController setHidesBottomBarWhenPushed:NO];
в viewWillAppear из Profile_ViewController , Работает Nothings. Я просто вижу пустой белый экран.
вы имеете в виду вы хотите перейти приложение к другому viewCont из одной вкладки 4? – vaibhav
@jamshed Вы можете поделиться более подробной информацией о том, как ваше приложение структурировано? Вы используете UINavigationController в своем приложении? –
Вы можете поделиться скриншотом раскадровки? –