ios - 在iOS上观察多个相同类型的 Controller 后,如何一键回到上一个 Controller ?
<p><p>我们在我们的 <em>iOS</em> 项目上使用 <em>MvvmCross 4.4.0</em>,我遇到了以下问题:</p>
<ul>
<li>我需要引用其他页面来实现<strong>“Item”</strong>页面
<strong>“项目”</strong>页面;</li>
<li>我需要从任何 <strong>“Item”</strong> 页面到上一个 Controller (<strong>“Catalogue”</strong>Controller )的即时向后导航。</li>
</ul>
<p>图表:</p>
<p>目录 --ConcreteItem--> Item1 --MoreItems--> Item2 --MoreItems--></p>
<p>Item3 --BackNavButton--> 目录。</p>
<p>我正在自定义 ViewPresenter 中做以下事情:</p>
<pre><code> var topViewController = ParentRootViewController.TopViewController;
ParentRootViewController.PushViewController(currentViewController, needAnimation);
if (topViewController.GetType() == currentView.GetType()
&& /*Logic to determine if its correct view types*/)
{
topViewController.RemoveFromParentViewController();
topViewController.Dispose();
}
</code></pre>
<p>在我没有返回<strong>“目录”</strong>页面之前,它实际上是有效的。
问题是我需要多次点击后退按钮,我点击了 <strong>“项目”</strong> 页面上的 <strong>“更多”</strong> 按钮。此外,如果我们在 <strong>"Catalogue"</strong> 和 <strong>"Item"</strong> 页面中都使用带有此类代码的自定义后退按钮:</p>
<pre><code>if (NavigationController?.NavigationBar?.BackItem != null)
{
var backbutton = new UIBarButtonItem(" ",
UIBarButtonItemStyle.Plain,
(sender, e) => { NavigationController?.PopViewController(true); })
{
Image = UIImage.FromBundle("BackButtonImage")
};
NavigationItem.LeftBarButtonItem = backbutton;
}
</code></pre>
<p>然后,当点击 <strong>“目录”</strong> 页面上的 <strong>“后退”</strong> NavButton 时应用程序崩溃</p>
<pre><code>(sender, e) => { NavigationController?.PopViewController(true);
</code></pre>
<p>已处置的对象<strong>ItemPageViewController</strong>。</p>
<p>问题是:如何在 MvvmCross 中正确实现“SingleTop”页面?</p>
<p>或者</p>
<p>如何解决这个问题?</p>
<p>P.S.:如果从 MvxPresenter 中删除行 </p>
<pre><code>topViewController.Dispose();
</code></pre>
<p>然后在自定义 lambda 中会抛出 NullReferenceException。</p>
<p>P.P.S.:我认为问题在于我没有从导航堆栈中删除 Controller 。我曾尝试在自定义 View 演示器中删除 Controller ,但首先,它有时为空,即使使用空检查也无济于事。 </p></p>
<br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
<p><p><code>UINavigationController</code>有一个函数<code>PopToViewController(UIViewController viewController, bool animated);</code></p>
<p>当 View 属于同一类型时,您可以在按下后退按钮时弹出 <code>ViewController</code> 目录,而不是删除每个 <code>ViewController</code>。 </p>
<p><code>UINavigationController</code> 有一个属性 <code>ViewControllers</code>,我们可以使用它来查找 <code>CatalogueViewController</code>。</p>
<p>由于您使用的是 <code>MvvmCross</code>,我们将检查 <code>ViewModel</code> 类型。</p>
<pre><code>var catalogueController = NavigationController.ViewControllers.First(c =>
((IMvxIosView)c).ViewModel.GetType() == typeof(CatalogueViewModel));
</code></pre>
<p>现在你可以使用函数<code>PopToViewController</code>关闭所有 View ,直到<code>CatalogueController</code></p>
<pre><code>CurrentNavigationController.PopToViewController(catalogueController, true);
</code></pre></p>
<p style="font-size: 20px;">关于ios - 在iOS上观察多个相同类型的 Controller 后,如何一键回到上一个 Controller ?,我们在Stack Overflow上找到一个类似的问题:
<a href="https://stackoverflow.com/questions/51019553/" rel="noreferrer noopener nofollow" style="color: red;">
https://stackoverflow.com/questions/51019553/
</a>
</p>
页:
[1]