0

我正在创建一个选项卡式 iPhone 应用程序。当应用程序启动时,如果用户未登录,则应该在选项卡栏控制器的顶部显示一个模式视图(因此看起来这是第一个屏幕)。登录后,模态视图会滑开以显示其后面的标签栏控制器。

不幸的是,当我[self.tabBarController presentViewController:self.loginViewController animated:NO completion:NULL]从我的应用程序委托内部调用时,我仍然可以看到屏幕底部的选项卡。我需要他们覆盖。

具有讽刺意味的是,在寻找解决方案时,我发现大多数人都遇到了逆问题。

我注意到,如果我没有将窗口的 rootViewController 设置为 UITabBarController,只将其视图作为窗口的子视图插入,那么它可以按预期工作,但是 Xcode 抱怨缺少 rootViewController。这里发生了什么?

我的应用程序委托的-application:didFinishLaunchingWithOptions:方法如下所示。

- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
    [self registerDefaults];
    self.tabBarController = [[[UITabBarController alloc] init] autorelease];
    self.tabBarController.viewControllers = @[
        [self makeSellingListingsController],
        [[[UIViewController alloc] init] autorelease], // stub
        [[[UIViewController alloc] init] autorelease], // stub
        [[[UIViewController alloc] init] autorelease]  // stub
    ];
    self.window = [[[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]] autorelease];
    self.window.rootViewController = self.tabBarController;
    [self.window addSubview:self.tabBarController.view];

    [self presentLogin]; // this doesn't cover the tabs, but it should

    [self.window makeKeyAndVisible];
    return YES;
}

- (void)presentLogin
{
    [self.tabBarController presentViewController:[[[FLLoginViewController alloc]
                                                   initWithNibName:@"FLLoginViewController"
                                                   bundle:[NSBundle mainBundle]] autorelease]
                                        animated:NO
                                      completion:NULL];
}
4

1 回答 1

0

不要从选项卡栏控制器显示它,而是从第一个选项卡的根控制器的 viewDidAppear 方法中显示它。如果您将 NO 传递给动画参数,则当您启动应用程序时,模态屏幕将是您看到的第一件事。

于 2013-01-26T06:22:52.673 回答