菜鸟教程小白 发表于 2022-12-12 19:44:06

ios - 来自另一个 View Controller 时的 xcode 问题


                                            <p><p>我正在开发一个 iPhone 应用程序并遇到了一些问题。我有一个主视图 Controller 和另一个名为 GameViewController 的 Controller 。我在主视图 Controller 中有一个按钮可以进入游戏,游戏中有一个后退按钮可以返回主视图 Controller 。如果我转到游戏 ViewController 并返回主视图,下次按下按钮转到游戏 ViewController 时,我会发现各种故障。这是我的按钮去 gameViewController 的代码:</p>

<pre><code>   GameViewController *game = [ initWithNibName:nil bundle:Nil];
    ;

;
</code></pre>

<p>这是转到主视图 Controller 的后退按钮代码:</p>

<pre><code>    ViewController *home = [ initWithNibName:nil bundle:nil];
UIViewController *parentViewController = self.presentingViewController;
[self dismissViewControllerAnimated:YES completion:^
{
   ;
}];
</code></pre>

<p>如果有人能提供帮助,将不胜感激。</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>你不使用 <code>UINavigationController</code> 有什么原因吗?即使您想隐藏导航栏并提供自己的导航 UI,也可以使用它。听起来您有自己的后退按钮,这就足够了。</p>

<p>使用 UINavigationController,您的代码看起来更像这样:</p>

<pre><code>// in your application delegate&#39;s application:didFinishLaunchingWithOptions: method

UINavigationController *nav = initWithRootViewController:home];
nav.navigationBarHidden = YES; // this hides the nav bar
self.window.rootViewController = nav;

// from your &#39;home&#39; VC to present the game vc:

GameViewController *game = [ initWithNibName:nil bundle:Nil];
;

// from your &#39;game&#39; VC to get back to &#39;home&#39;:

;
</code></pre>

<p>您只是在一个地方实例化“家庭”和“游戏” ViewController ,而 UINavigationController 将 ViewController 显示在其堆栈的顶部。</p></p>
                                   
                                                <p style="font-size: 20px;">关于ios - 来自另一个 ViewController 时的 xcode 问题,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/22119913/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/22119913/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - 来自另一个 View Controller 时的 xcode 问题