菜鸟教程小白 发表于 2022-12-13 15:49:39

iOS:在多任务处理中检测常规或紧凑


                                            <p><p>在我的应用程序中,我允许多任务模式。
但是,如果我的视野太受限制,我需要采取一些行动。
观看 Apple 文档时,我看到了这张图片</p>

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

<p>您可以看到,在 iPad Pro 的 SplitView 中,两个 View 都是常规的,而在其他 iPad 中,两个 View 都是紧凑的。
我有什么可以让我知道我当前的 View 是常规 View 还是紧凑 View ?</p>

<p>谢谢</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>这是我的解决方案:</p>

<pre><code>if (self.view.traitCollection.horizontalSizeClass == UIUserInterfaceSizeClassRegular){
      NSLog(@&#34;REGULAR HORIZONTAL&#34;);
      return TRUE;
    }else{
      NSLog(@&#34;COMPACT HORIZONTAL&#34;);
      return FALSE;
    }
</code></pre></p>
                                   
                                                <p style="font-size: 20px;">关于iOS:在多任务处理中检测常规或紧凑,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/36425915/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/36425915/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: iOS:在多任务处理中检测常规或紧凑