]> git.saurik.com Git - cydia.git/blobdiff - CyteKit/ViewController.mm
Fix iOS 7 autorotate (need setRootViewController).
[cydia.git] / CyteKit / ViewController.mm
index df2ba616573d4568de456c5f97e6c9898d243520..edd87ca00338a6f16d0ed1fc0bf831dce88e1bb7 100644 (file)
@@ -112,6 +112,14 @@ extern bool IsWildcat_;
     return IsWildcat_ || orientation == UIInterfaceOrientationPortrait;
 }
 
+- (NSUInteger) supportedInterfaceOrientations {
+    return IsWildcat_ ? UIInterfaceOrientationMaskAll : UIInterfaceOrientationMaskPortrait;
+}
+
+- (BOOL) shouldAutorotate {
+    return YES;
+}
+
 - (void) setPageColor:(UIColor *)color {
     if (color == nil) {
         color = [UIColor groupTableViewBackgroundColor];