菜鸟教程小白 发表于 2022-12-13 12:11:53

ios - 使用 Storyboard从应用程序委托(delegate)呈现模态视图 Controller


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

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

<pre><code>    - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{   
    AppStartViewController *appStartViewController = [ init];
    UINavigationController *navController = [ initWithRootViewController:appStartViewController];
    ;

    UIStoryboard *storyboard = ;

    UIViewController *vc = ;
    ;

    // Override point for customization after application launch.
    return YES;
}
</code></pre>

<p>任何想法出了什么问题或我的想法错误在哪里?</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>我认为你还没有看到 vc。您首先需要展示 vcViewController 。</p>

<p><code>self.window.rootViewController = vc;</code></p>

<p><code>;</code></p>

<p>模态视图 Controller 只能由另一个已经在 View 上的 ViewController 呈现。</p></p>
                                   
                                                <p style="font-size: 20px;">关于ios - 使用 Storyboard从应用程序委托(delegate)呈现模态视图 Controller ,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/9685849/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/9685849/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - 使用 Storyboard从应用程序委托(delegate)呈现模态视图 Controller