菜鸟教程小白 发表于 2022-12-13 04:10:30

ios - 如何防止 UITabBar 的 unwind segue?


                                            <p><p>我有一个嵌入在 UITabBarController 中的 Show segue。当我点击当前选定的选项卡时,我想防止展开转场,除非满足特定条件。我试过使用 <code>shouldPerformSegueWithIdentifier</code> 和 <code>canPerformUnwindSegueAction</code> 但以这种方式展开时似乎都没有被触发。</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>不确定标签栏上的 unwind segue 是什么意思,但如果你想阻止标签更改,<code>UITabBarController</code> 上有一个委托(delegate)函数用于此目的。</p>

<p>将协议(protocol)添加到您的标签栏类。</p>

<pre><code>@interface YourTabbarViewController () &lt;UITabBarControllerDelegate&gt;

@end
</code></pre>

<p>分配委托(delegate),然后实现该功能。</p>

<pre><code>@implementation YourTabbarViewController

- (void)viewDidLoad {
    ;

    self.delegate = self;
}

- (BOOL)tabBarController:(UITabBarController *)tabBarController shouldSelectViewController:(UIViewController *)viewController {

    if (preventTabChange)
      return NO;

    return YES;
}
</code></pre>

<hr/>

<p>更新</p>

<p>好的,假设您已经设置了如图所示的相关部分,并且如果满足某些条件,您希望阻止从 B 到 A 的展开。如上所述我的解决方案将起作用。 </p>

<p> <a href="/image/NCNQ5.png" rel="noreferrer noopener nofollow"><img src="/image/NCNQ5.png" alt="enter image description here"/></a> </p>

<p>当 <em>导航 Controller </em> 即将激活时,您将收到查询/通知,您可以创建自己的子类来保存您需要决定是否应该使用的任何信息允许从 subviewController 显示或展开。在这种情况下,您的预防措施可能如下所示(扩展上面的 <code>shouldSelectViewController</code>):</p>

<pre><code>- (BOOL)tabBarController:(UITabBarController *)tabBarController shouldSelectViewController:(UIViewController *)viewController {

    if (]) {
      if ([(YourNavigationController *)viewController preventUnwind])
            return NO;
    }

    return YES;
}
</code></pre>

<p>请注意,我特意选择 <code>preventUnwind</code> 作为自定义类中的标志来说明要做什么。当您将 <em> 移动到</em>ViewController 时,这将默认为 <code>NO</code>,因此允许这样做。</p>

<p>不要忘记将 <code>YourTabbarViewController</code> 设置为 <em>Tabbar View Controller</em> 的类,并将 <code>YourNavigationController</code> 设置为 <em>Navigation Controller</em> 在图片中。 </p></p>
                                   
                                                <p style="font-size: 20px;">关于ios - 如何防止 UITabBar 的 unwind segue?,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/50093451/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/50093451/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - 如何防止 UITabBar 的 unwind segue?