在rubymotion中强制ipad / iphone的不同方向

时间:2013-11-05 09:14:12

标签: ios iphone ipad rubymotion device-orientation

我有一个iOS通用应用程序,我需要使用它:

  • 适用于iPad的LandscapeLeft或LandscapeRight

  • iPhone的肖像

让我们以iPad为例,我需要强制应用程序以横向模式打开,即使用户的设备处于纵向模式。当应用程序仅用于iPad并且rakefile使用此设置时,这是完美无缺的:

app.interface_orientations = [:landscape_left, : landscape_right]

不幸的是,现在,删除后,应用程序默认以纵向模式显示。我试图通过覆盖UIViewController.rb中的以下方法来改变它。这适用于模拟器,但不适用于我的设备:

  def shouldAutorotate
    # Block AutoRotation if the interfaces is CORRECT
    # Else allow IT
    if Device.ipad? # BubbleWrap gem method 
      if App.shared.interfaceOrientation == UIInterfaceOrientationLandscapeLeft
        return false
      elsif App.shared.interfaceOrientation == UIInterfaceOrientationLandscapeRight
        return false
      else
        return true
      end
    elsif Device.iphone?
      if App.shared.interfaceOrientation == UIInterfaceOrientationPortrait
        return false
      else
        return true
      end
    end
  end

  def viewDidAppear(animated)
    # Change the orientation after the view Appeared
    if Device.ipad?
      App.shared.setStatusBarOrientation(UIInterfaceOrientationLandscapeLeft)
    elsif Device.iphone?
      App.shared.setStatusBarOrientation(UIInterfaceOrientationPortrait)
    end
  end

我尝试了很多解决方案,但似乎都没有按照我想要的方式工作。

谢谢,弗拉德

1 个答案:

答案 0 :(得分:0)

要尝试简化所有内容,您可以使用motion-schemes wrapper,它可以让您为每个设备设置不同的设置,这意味着您可以回到app.interface_orientations的简单性并避免所有的hackery。