Support iOS 6 force rotation.

This commit is contained in:
Mark Rickert
2013-06-04 17:07:44 -04:00
parent 8e199d2f7a
commit fca63ed1e5

View File

@@ -1,7 +1,15 @@
module ProMotion
class NavigationController < UINavigationController
def shouldAutorotate
visibleViewController.shouldAutorotate
end
end
class NavigationController < UINavigationController
def shouldAutorotate
visibleViewController.shouldAutorotate
end
def supportedInterfaceOrientations
visibleViewController.supportedInterfaceOrientations
end
def preferredInterfaceOrientationForPresentation
visibleViewController.preferredInterfaceOrientationForPresentation
end
end
end