菜鸟教程小白 发表于 2022-12-13 06:32:04

ios - 如何访问 Apple WatchKit WKInterfaceController 列表


                                            <p><p>在我的 watch 扩展代码中,我试图阻止在某些情况下显示第二个界面 Controller 。我的解决方案需要查看事件 ViewController 列表。 </p>

<p>有人知道如何获取所有事件接口(interface) Controller 的列表吗?您可以在 iOS 中使用 <code>self.navigationController.viewControllers</code> 执行此操作,但我在 WatchKit 中找不到导航 Controller 。</p>

<p>我已通读 <a href="https://developer.apple.com/library/prerelease/ios/documentation/General/Conceptual/WatchKitProgrammingGuide/" rel="noreferrer noopener nofollow">Apple Watch Programming Guide</a>很多次,但他们没有解决这个问题。由于您可以推送和弹出接口(interface) Controller ,因此操作系统必须保存一个列表,但我怀疑没有对该列表的编程访问权限。 </p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>您可以尝试通过制作自己的列表来解决它,并将其保存在 <code>NSUserDefaults</code> 例如:</p>

<p>您应该在初始 <code>ViewController</code> 的初始化时清除它:</p>

<pre><code>- (instancetype)init {
    self = ;
    // get user defaults
    NSUserDefaults *defaults = ;

    // empty the array at application launch
    init] forKey:@&#34;activeVCs&#34;];
    ;

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

<p>然后在每个其他 <code>ViewController</code> 中,在 Controller 的激活/停用时添加和删除到此列表:</p>

<pre><code>- (void)willActivate {
    // get list of VCs
    NSUserDefaults *defaults = ;
    NSMutableArray *listOfVCs = ;
    ;

    // save array and sync
    ;
    ;

    ;
}

- (void)didDeactivate {

    // get list of VCs
    NSUserDefaults *defaults = ;
    NSMutableArray *listOfVCs = ;

    // remove VC if exists
    if ()
      ;

    // save array and sync
    ;
    ;

    ;
}
</code></pre></p>
                                   
                                                <p style="font-size: 20px;">关于ios - 如何访问 Apple WatchKit WKInterfaceController 列表,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/29803000/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/29803000/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - 如何访问 Apple WatchKit WKInterfaceController 列表