菜鸟教程小白 发表于 2022-12-12 11:32:15

ios - 防止 RubyMotion 应用程序旋转


                                            <p><p>如何阻止 RubyMotion 应用程序旋转?</p>

<p>我尝试实现:</p>

<pre><code>def shouldAutorotateToInterfaceOrientation(interfaceOrientation)
UIInterfaceOrientationLandscapeRight == interfaceOrientation
end
</code></pre>

<p>但我想要应用程序范围的东西,我可以在 <code>AppDelegate</code> 中设置一个方法来控制整个应用程序吗?</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>您可以在这里找到一个好的解决方案:</p>

<p> <a href="https://stackoverflow.com/questions/12396545/ios-6-apps-how-to-deal-with-iphone-5-screen-size/12397738#12397738" rel="noreferrer noopener nofollow">iOS 6 apps - how to deal with iPhone 5 screen size?</a> </p>

<p>如果您想让它更适用于应用程序,我建议您创建一个可以包含的模块。</p>

<pre><code>module Rotation
# methods here
end

class MyViewController &lt; UIViewController
include Rotation
end
</code></pre></p>
                                   
                                                <p style="font-size: 20px;">关于ios - 防止 RubyMotion 应用程序旋转,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/16890742/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/16890742/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - 防止 RubyMotion 应用程序旋转