OGeek|极客世界-中国程序员成长平台

标题: ios - 使用 Storyboard从应用程序委托(delegate)呈现模态视图 Controller [打印本页]

作者: 菜鸟教程小白    时间: 2022-12-13 12:11
标题: ios - 使用 Storyboard从应用程序委托(delegate)呈现模态视图 Controller

如果我在我的 iOS 项目中后悔一件事,那就是我从一开始就开始使用 Storyboard。现在我很难找到合适的引用资料。

在这种特殊情况下,我只想在应用程序从 AppDelegate 完成启动后立即显示模态视图 Controller 。很简单,但我现在无法完成:

    - (BOOL)applicationUIApplication *)application didFinishLaunchingWithOptionsNSDictionary *)launchOptions
{    
    AppStartViewController *appStartViewController = [[AppStartViewController alloc] init];
    UINavigationController *navController = [[UINavigationController alloc] initWithRootViewController:appStartViewController];
    [navController setModalPresentationStyle:UIModalPresentationFullScreen];

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

    UIViewController *vc = [storyboard instantiateViewControllerWithIdentifier"MyInitialViewController"];
    [vc presentModalViewController:navController animated:NO];

    // Override point for customization after application launch.
    return YES;
}

任何想法出了什么问题或我的想法错误在哪里?



Best Answer-推荐答案


我认为你还没有看到 vc。您首先需要展示 vc View Controller 。

self.window.rootViewController = vc;

[self.window makeKeyAndVisible];

模态视图 Controller 只能由另一个已经在 View 上的 View Controller 呈现。

关于ios - 使用 Storyboard从应用程序委托(delegate)呈现模态视图 Controller ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9685849/






欢迎光临 OGeek|极客世界-中国程序员成长平台 (http://jike.in/) Powered by Discuz! X3.4