让我先解释一下我的申请。我有六个视图控制器
- 菜单视图控制器
- 第一视图控制器
- 第二视图控制器
- 第三视图控制器
- 第四视图控制器
- 第五视图控制器
所有这 6 个 ViewController 都在 navigationController 中。我想在应用程序启动时首先显示我的“MenuViewController”,在初始屏幕之后,其中包含 5 个按钮(对于:FirstViewController、SecondViewController、ThirdViewController、FourthViewController、FifthViewController)。在这个 viewController 中,页面底部不会有 TabBarController。但其他 viewController 将在 tabbarController 中。当我在 menuviewController 中触摸这五个按钮之一时,它会将我带到相应的视图控制器,在那里我可以在底部找到 tabbarController。我可以通过自定义编码、定位和设置图像来做到这一点。这是代码:
AppDelegate.h:
@interface AppDelegate : UIResponder <UIApplicationDelegate, UITabBarControllerDelegate>
{
UIImageView *firstTabImageView;
UIImageView *secondTabImageView;
UIImageView *thirdTabImageView;
UIImageView *fourthTabImageView;
UIImageView *fifthTabImageView;
UIImage *firstTabImage;
UIImage *firstTabActiveImage;
UIImage *secondTabImage;
UIImage *secondTabActiveImage;
UIImage *thirdTabImage;
UIImage *thirdTabActiveImage;
UIImage *fourthTabImage;
UIImage *fourthTabActiveImage;
UIImage *fifthTabImage;
UIImage *fifthTabActiveImage;
}
@property (strong, nonatomic) MenuViewController *menuViewController;
@property (strong, nonatomic) UINavigationController *navigationController;
@property (retain, nonatomic) IBOutlet UITabBarController *tabBarController;
AppDelegate.m:
-(void)makeTabBar
{
tabBarController = [[UITabBarController alloc] init];
tabBarController.delegate=self;
FirstViewController *firstViewController =[[FirstViewController alloc] initWithNibName:@"FirstViewController" bundle:nil];
UINavigationController *firstNavigationController = [[UINavigationController alloc] initWithRootViewController:firstViewController];
firstNavigationController.tabBarController.tabBar.tag = 0;
SecondViewController *secondViewController = [[SecondViewController alloc] initWithNibName:@"SecondViewController" bundle:nil];
UINavigationController *secondNavigationController = [[UINavigationController alloc] initWithRootViewController:secondViewController];
secondNavigationController.tabBarController.tabBar.tag = 1;
ThirdViewController *thirdViewController = [[ThirdViewController alloc] initWithNibName:@"ThirdViewController" bundle:nil];
UINavigationController *thirdNavigationController = [[UINavigationController alloc] initWithRootViewController:thirdViewController];
thirdNavigationController.tabBarController.tabBar.tag = 2;
FourthViewController *fourthViewController = [[FourthViewController alloc] initWithNibName:@"FourthViewController" bundle:nil];
UINavigationController *fourthNavigationController = [[UINavigationController alloc] initWithRootViewController:fourthViewController];
fourthNavigationController.tabBarController.tabBar.tag = 3;
FifthViewController *fifthViewController = [[FifthViewController alloc] initWithNibName:@"FifthViewController" bundle:nil];
UINavigationController *fifthNavigationController = [[UINavigationController alloc] initWithRootViewController:fifthViewController];
fifthNavigationController.tabBarController.tabBar.tag = 4;
menuNavigationController.navigationBarHidden = YES;
firstNavigationController.navigationBarHidden = YES;
secondNavigationController.navigationBarHidden = YES;
thirdNavigationController.navigationBarHidden = YES;
fourthNavigationController.navigationBarHidden = YES;
fifthNavigationController.navigationBarHidden = YES;
NSArray *viewControllers =[[NSArray alloc]initWithObjects:
firstNavigationController,
secondNavigationController,
thirdNavigationController,
fourthNavigationController,
fifthNavigationController,
nil];
firstTabImage = [UIImage imageNamed:@"MenuTabImage.png"];
firstTabActiveImage = [UIImage imageNamed:@"MenuTabImage_Active.png"];
secondTabImage = [UIImage imageNamed:@"TVGuideTabImage.png"];
secondTabActiveImage = [UIImage imageNamed:@"TVGuideTabImage_Active.png"];
thirdTabImage = [UIImage imageNamed:@"FirstRankTabImage.png"];
thirdTabActiveImage = [UIImage imageNamed:@"FirstRankTabImage_Active.png"];
fourthTabImage = [UIImage imageNamed:@"FavoriteTabImage.png"];
fourthTabActiveImage = [UIImage imageNamed:@"FavoriteTabImage_Active.png"];
fifthTabImage = [UIImage imageNamed:@"RegistrationTabImage.png"];
fifthTabActiveImage = [UIImage imageNamed:@"RegistrationTabImage_Active.png"];
CGRect frame = CGRectMake(0, 0, 320, 52);
UIView *viewa = [[UIView alloc] initWithFrame:frame];
UIImage *tabBarBackgroundImage = [UIImage imageNamed:@"Tab_Back.png"];
UIColor *color = [[UIColor alloc] initWithPatternImage:tabBarBackgroundImage];
[viewa setBackgroundColor:color];
if(IS_IPHONE_5)
{
[[self.tabBarController tabBar] insertSubview:viewa atIndex:1];
firstTabImageView = [[UIImageView alloc]initWithFrame:CGRectMake(0, 519, 64, 49)];
secondTabImageView = [[UIImageView alloc]initWithFrame:CGRectMake(64, 519,64, 49)];
thirdTabImageView = [[UIImageView alloc]initWithFrame:CGRectMake(128, 519,64, 49)];
fourthTabImageView = [[UIImageView alloc]initWithFrame:CGRectMake(192, 519, 64, 49)];
fifthTabImageView = [[UIImageView alloc]initWithFrame:CGRectMake(256, 519, 64, 49)];
}
else
{
[[self.tabBarController tabBar] insertSubview:viewa atIndex:0];
firstTabImageView = [[UIImageView alloc]initWithFrame:CGRectMake(0, 431, 64, 49)];
secondTabImageView = [[UIImageView alloc]initWithFrame:CGRectMake(64, 431,64, 49)];
thirdTabImageView = [[UIImageView alloc]initWithFrame:CGRectMake(128, 431,64, 49)];
fourthTabImageView = [[UIImageView alloc]initWithFrame:CGRectMake(192, 431, 64, 49)];
fifthTabImageView = [[UIImageView alloc]initWithFrame:CGRectMake(256, 431, 64, 49)];
}
firstTabImageView.image = firstTabActiveImage;
secondTabImageView.image = secondTabImage;
thirdTabImageView.image = thirdTabImage;
fourthTabImageView.image = fourthTabImage;
fifthTabImageView.image = fifthTabImage;
[self.tabBarController.view addSubview:firstTabImageView];
[self.tabBarController.view addSubview:secondTabImageView];
[self.tabBarController.view addSubview:thirdTabImageView];
[self.tabBarController.view addSubview:fourthTabImageView];
[self.tabBarController.view addSubview:fifthTabImageView];
self.tabBarController.delegate=self;
self.tabBarController.selectedIndex=0;
[tabBarController setViewControllers:viewControllers animated:NO];
}
- (void)tabBarController:(UITabBarController *)tabBarController1 didSelectViewController:(UIViewController *)viewController1
{
if (viewController1 == [tabBarController1.viewControllers objectAtIndex:0])
{
firstTabImageView.image = [UIImage imageNamed:@"MenuTabImage_Active.png"];
secondTabImageView.image = [UIImage imageNamed:@"TVGuideTabImage.png"];
thirdTabImageView.image = [UIImage imageNamed:@"FirstRankTabImage.png"];
fourthTabImageView.image = [UIImage imageNamed:@"FavoriteTabImage.png"];
fifthTabImageView.image = [UIImage imageNamed:@"RegistrationTabImage.png"];
}
else if (viewController1 == [tabBarController1.viewControllers objectAtIndex:1])
{
firstTabImageView.image = [UIImage imageNamed:@"MenuTabImage.png"];
secondTabImageView.image = [UIImage imageNamed:@"TVGuideTabImage_Active.png"];
thirdTabImageView.image = [UIImage imageNamed:@"FirstRankTabImage.png"];
fourthTabImageView.image = [UIImage imageNamed:@"FavoriteTabImage.png"];
fifthTabImageView.image = [UIImage imageNamed:@"RegistrationTabImage.png"];
}
else if (viewController1 == [tabBarController1.viewControllers objectAtIndex:2])
{
firstTabImageView.image = [UIImage imageNamed:@"MenuTabImage.png"];
secondTabImageView.image = [UIImage imageNamed:@"TVGuideTabImage.png"];
thirdTabImageView.image = [UIImage imageNamed:@"FirstRankTabImage_Active.png"];
fourthTabImageView.image = [UIImage imageNamed:@"FavoriteTabImage.png"];
fifthTabImageView.image = [UIImage imageNamed:@"RegistrationTabImage.png"];
}
else if (viewController1 == [tabBarController1.viewControllers objectAtIndex:3])
{
firstTabImageView.image = [UIImage imageNamed:@"MenuTabImage.png"];
secondTabImageView.image = [UIImage imageNamed:@"TVGuideTabImage.png"];
thirdTabImageView.image = [UIImage imageNamed:@"FirstRankTabImage.png"];
fourthTabImageView.image = [UIImage imageNamed:@"FavoriteTabImage_Active.png"];
fifthTabImageView.image = [UIImage imageNamed:@"RegistrationTabImage.png"];
}
else if (viewController1 == [tabBarController1.viewControllers objectAtIndex:4])
{
firstTabImageView.image = [UIImage imageNamed:@"MenuTabImage.png"];
secondTabImageView.image = [UIImage imageNamed:@"TVGuideTabImage.png"];
thirdTabImageView.image = [UIImage imageNamed:@"FirstRankTabImage.png"];
fourthTabImageView.image = [UIImage imageNamed:@"FavoriteTabImage.png"];
fifthTabImageView.image = [UIImage imageNamed:@"RegistrationTabImage_Active.png"];
}
}
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
self.window = [[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]];
[self makeTabBar];
MenuViewController *menuViewController = [[MenuViewController alloc] initWithNibName:@"MenuViewController" bundle:nil];
navigationController = [[UINavigationController alloc] initWithRootViewController:menuViewController];
self.window.rootViewController = self.navigationController;
[self.window makeKeyAndVisible];
return YES;
}
我将此代码用于具有不同索引的每个“IBAction”:例如:“FirstViewController”与“index:0”
- (IBAction)GotoFirstViewController:(id)sender
{
AppDelegate *appdelegte = (AppDelegate*)[[UIApplication sharedApplication] delegate];
[[[appdelegte navigationController] view]removeFromSuperview];
[[appdelegte window] addSubview:[[appdelegte tabBarController] view]];
[[appdelegte tabBarController] setSelectedIndex:0];
}
现在问题是在转到 ViewController 之后,然后回到“MenuViewController”使用 此代码:
-(IBAction)goBack:(id)sender
{
menuViewController = [[MenuViewController alloc] initWithNibName:@"MenuViewController" bundle:nil];
[self.navigationController pushViewController:menuViewController animated:YES];
}
我无法按相同的按钮转到另一个 ViewController(五个中的任何一个)。 如果有人知道,当从“seceondViewController(此处:firstViewController)”设置标签栏时,从其他ViewController进入“firstViewController(此处:menuViewController)”后,如何再次进入与标签栏相连的其他ViewController,请与我分享。非常感谢您阅读这篇文章,并在此先感谢您。- 图伦