菜鸟教程小白 发表于 2022-12-12 19:36:52

ios - 主表应用程序


                                            <p><p>我正在使用一个基本的 iPad Master Table 应用程序,它只使用纵向。</p>
<p>我希望在您向右滑动时阻止主视图 Controller 出现(仅通过按钮访问)。</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>这是 <code>UISplitViewController</code> 的新功能,在 iOS 5.1 中引入。 </p>

<p>为了禁用此功能,他们还实现了一个名为 <code>presentsWithGesture</code> 的新属性来打开和关闭它。</p>

<p>Apple 强烈建议您保留它,因为人们会越来越期望它以这种方式工作,但如果您必须禁用它,则需要在代码的某处添加:</p>

<pre><code>self.splitViewController.presentsWithGesture = NO;
</code></pre>

<p>或者,如果您手动创建 splitViewController,那么只需将 <code>presentsWithGesture</code> 设置为 NO。</p></p>
                                   
                                                <p style="font-size: 20px;">关于ios - 主表应用程序,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/9628107/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/9628107/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - 主表应用程序