如何阻止 RubyMotion 应用程序旋转?
我尝试实现:
def shouldAutorotateToInterfaceOrientation(interfaceOrientation)
UIInterfaceOrientationLandscapeRight == interfaceOrientation
end
但我想要应用程序范围的东西,我可以在 AppDelegate
中设置一个方法来控制整个应用程序吗?
您可以在这里找到一个好的解决方案:
iOS 6 apps - how to deal with iPhone 5 screen size?
如果您想让它更适用于应用程序,我建议您创建一个可以包含的模块。
module Rotation
# methods here
end
class MyViewController < UIViewController
include Rotation
end
关于ios - 防止 RubyMotion 应用程序旋转,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16890742/
欢迎光临 OGeek|极客世界-中国程序员成长平台 (http://ogeek.cn/) | Powered by Discuz! X3.4 |