我目前有一個ios應用程序,我正在寫Rubymotion。我試圖設置一個UIViewController來縱向顯示,而不是旋轉到橫向。我不僅可以在我的rakefile中指定縱向,因爲我需要其他uiviewcontrollers的所有方向。請參閱下面的我的代碼:Rubymotion UIView方向
class ConfirmationController < UIViewController
def viewDidLoad
super
self.view.backgroundColor = UIColor.blueColor
end
def shouldAutorotate
true
end
def supportedInterfaceOrientations
UIInterfaceOrientationMaskPortrait
end
def preferredInterfaceOrientationForPresentation
UIInterfaceOrientationMaskPortrait
end
正如你可以看到,我想設置我的preferredInterfaceOrientation但是當我的設備旋轉它仍然改變爲橫向。任何關於如何使用Rubymotion設置的想法?