gpt4 book ai didi

ios - 在显示初始 View Controller 之前呈现 View Controller

转载 作者:塔克拉玛干 更新时间:2023-11-02 10:26:59 24 4
gpt4 key购买 nike

我有一个具有以下结构的应用程序:

主视图 Controller 是一个有 4 个选项卡的选项卡栏 View Controller 。用户只能在登录时访问这些 View Controller 。当应用程序启动时,它会加载它的初始 View Controller (选项卡栏之一),然后我检查用户是否已通过身份验证。如果不是,我会提供一个登录 View Controller 。

我遇到的问题是,当应用程序启动时,它正在加载选项卡栏 Controller ,并从该 Controller 显示登录 View Controller ,但它会在一个小时间窗口内显示选项卡栏 Controller 的 View 屏幕,在登录 View 之前。我需要直接从选项卡栏 Controller 显示登录 View ,但在这么小的时间间隔内不显示选项卡栏 Controller 的 View ,因为它对用户不友好。

我在 stackoverflow 上阅读了一些关于在没有动画的情况下呈现新 View Controller 的答案,这就是我正在做的,但问题仍然存在。

我希望我对这个问题已经足够清楚了,如果您需要更多信息,请告诉我。

编辑:我在 applicationDidBecomeActive:applicationDelegate.m 上展示登录 View Controller

最佳答案

在应用委托(delegate)中,在 didFinishLaunchingWithOptions 中,

在登录与否的情况下,

self.window = [[UIWindow alloc] initWithFrame:UIScreen.mainScreen.bounds];

UIStoryboard *storyboard = [UIStoryboard storyboardWithName:@"Main" bundle:nil];

UIViewController *viewController =[storyboard instantiateViewControllerWithIdentifier:@"your identifier"];

self.window.rootViewController = viewController;
[self.window makeKeyAndVisible];

关于ios - 在显示初始 View Controller 之前呈现 View Controller ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40719383/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com