From ae2e967c43880fbd1b7e7f130541e9dbbca0debf Mon Sep 17 00:00:00 2001 From: Sam Bingner Date: Sun, 30 Sep 2018 22:50:49 -1000 Subject: Make Cydia compatible back to iOS5 - unable to support older with this apt version due to newer apt requiring functions provided via libc++ on iOS --- CyteKit/InterfaceOrientation.h | 3 ++- CyteKit/ViewController.mm | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) (limited to 'CyteKit') diff --git a/CyteKit/InterfaceOrientation.h b/CyteKit/InterfaceOrientation.h index eddfaf4..813958e 100644 --- a/CyteKit/InterfaceOrientation.h +++ b/CyteKit/InterfaceOrientation.h @@ -22,7 +22,8 @@ - (NSUInteger) supportedInterfaceOrientations { extern bool IsWildcat_; extern CGFloat ScreenScale_; - return IsWildcat_ || ScreenScale_ == 3 ? UIInterfaceOrientationMaskAll : UIInterfaceOrientationMaskPortrait; + //return IsWildcat_ || ScreenScale_ == 3 ? UIInterfaceOrientationMaskAll : UIInterfaceOrientationMaskPortrait; + return UIInterfaceOrientationMaskAll; } - (BOOL) shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)orientation { diff --git a/CyteKit/ViewController.mm b/CyteKit/ViewController.mm index 72b7593..2e5d5a1 100644 --- a/CyteKit/ViewController.mm +++ b/CyteKit/ViewController.mm @@ -84,7 +84,8 @@ // Load on first appearance. We don't need to set the loaded flag here // because it is set for us the first time -reloadData is called. - self.navigationController.navigationBar.prefersLargeTitles = YES; + if (kCFCoreFoundationVersionNumber >= 1443.00) + self.navigationController.navigationBar.prefersLargeTitles = YES; if (![self hasLoaded]) [self reloadData]; } -- cgit v1.2.3