[ios] Optimized iOS version checking.

This commit is contained in:
VladiMihaylenko 2016-01-29 18:49:45 +03:00 committed by Sergey Yershov
parent 03164a450e
commit e529fa7127
19 changed files with 30 additions and 28 deletions

View file

@ -138,7 +138,7 @@
- (void)rateVersionFrom:(NSString *)launchPlaceName
{
NSString * urlString = isIOSVersionLessThan(8) ?
NSString * urlString = isIOS7 ?
[NSString stringWithFormat:@"itms-apps://itunes.apple.com/app/id510623322?mt=8&at=1l3v7ya&ct=%@", launchPlaceName] :
@"itms-apps://itunes.apple.com/WebObjects/MZStore.woa/wa/viewContentsUserReviews?id=510623322&onlyLatestVersion=true&pageNumber=0&sortOrdering=1&type=Purple+Software";
[self openURL:[NSURL URLWithString:urlString]];
@ -306,7 +306,7 @@
- (void)makeImageAlwaysTemplate
{
if (isIOSVersionLessThan(8))
if (isIOS7)
self.image = [self.image imageWithRenderingMode:UIImageRenderingModeAlwaysTemplate];
}

View file

@ -59,6 +59,9 @@ static inline BOOL isIOSVersionLessThan(NSUInteger version)
return isIOSVersionLessThan([NSString stringWithFormat:@"%@", @(version)]);
}
static BOOL const isIOS7 = isIOSVersionLessThan(8);
static BOOL const isIOS8 = !isIOS7 && isIOSVersionLessThan(9);
static uint64_t const KB = 1024;
static uint64_t const MB = 1024 * 1024;

View file

@ -38,7 +38,7 @@ static NSString * const kAlertControllerNibIdentifier = @"MWMAlertViewController
NSString * title = L(@"location_is_disabled_long_text");
NSString * cancel = L(@"cancel");
NSString * openSettings = L(@"settings");
if (isIOSVersionLessThan(8))
if (isIOS7)
{
UIAlertView * alertView = [[UIAlertView alloc] initWithTitle:title message:nil delegate:nil cancelButtonTitle:cancel otherButtonTitles:nil];
[alertView show];
@ -121,12 +121,11 @@ static NSString * const kAlertControllerNibIdentifier = @"MWMAlertViewController
- (void)displayAlert:(MWMAlert *)alert
{
BOOL const iOS7 = isIOSVersionLessThan(8);
alert.alertController = self;
[self.ownerViewController addChildViewController:self];
self.view.alpha = 0.;
alert.alpha = 0.;
if (!iOS7)
if (!isIOS7)
{
CGFloat const scale = 1.1;
alert.transform = CGAffineTransformMakeScale(scale, scale);
@ -135,7 +134,7 @@ static NSString * const kAlertControllerNibIdentifier = @"MWMAlertViewController
{
self.view.alpha = 1.;
alert.alpha = 1.;
if (!iOS7)
if (!isIOS7)
alert.transform = CGAffineTransformIdentity;
}];
}

View file

@ -132,7 +132,7 @@
- (void)rotate:(UIInterfaceOrientation)toInterfaceOrientation duration:(NSTimeInterval)duration
{
if (isIOSVersionLessThan(8) && [self respondsToSelector:@selector(setTransform:)])
if (isIOS7 && [self respondsToSelector:@selector(setTransform:)])
{
[UIView animateWithDuration:duration animations:^
{

View file

@ -53,7 +53,7 @@ static NSString * const kStatisticsEvent = @"Pedestrian Share Alert";
[[Statistics instance] logEvent:kStatisticsEvent withParameters:@{kStatAction : kStatApply}];
[Alohalytics logEvent:kStatisticsEvent withValue:@"shareTap"];
MWMActivityViewController * shareVC = [MWMActivityViewController shareControllerForPedestrianRoutesToast];
if (IPAD && !isIOSVersionLessThan(8))
if (IPAD && !isIOS7)
{
shareVC.completionWithItemsHandler = ^(NSString * activityType, BOOL completed, NSArray * returnedItems,
NSError * activityError)

View file

@ -36,7 +36,7 @@ static NSString * const kStatisticsEvent = @"Routing Disclaimer Alert";
[alert.textView sizeToFit];
UIWindow * window = UIApplication.sharedApplication.keyWindow;
CGFloat height;
if (isIOSVersionLessThan(8))
if (isIOS7)
height = UIInterfaceOrientationIsLandscape(orientation) ? window.width : window.height;
else
height = window.height;
@ -67,7 +67,7 @@ static NSString * const kStatisticsEvent = @"Routing Disclaimer Alert";
- (CGFloat)bounded:(CGFloat)f withHeight:(CGFloat)h
{
CGFloat const currentHeight = [self.subviews.firstObject height];
CGFloat const maximumHeight = h - (isIOSVersionLessThan(8) ? 4. : 2.) * kMinimumOffset;
CGFloat const maximumHeight = h - (isIOS7 ? 4. : 2.) * kMinimumOffset;
CGFloat const availableHeight = maximumHeight - currentHeight;
return MIN(f, availableHeight + self.textViewHeight.constant);
}

View file

@ -236,7 +236,7 @@ using namespace osm;
{
NSString * cancel = L(@"cancel");
NSString * del = L(@"delete");
if (isIOSVersionLessThan(8))
if (isIOS7)
{
UIActionSheet * actionSheet = [[UIActionSheet alloc] initWithTitle:nil delegate:self cancelButtonTitle:cancel destructiveButtonTitle:del otherButtonTitles:nil];
[actionSheet showInView:self.view];

View file

@ -68,7 +68,7 @@ static NSString * const kKeyPath = @"subviews";
- (BOOL)isVisible
{
if (isIOSVersionLessThan(9))
if (isIOS7 || isIOS8)
return _isVisible;
return NO;
}
@ -77,7 +77,7 @@ static NSString * const kKeyPath = @"subviews";
{
// Status bar in iOS 9 already provides back button if the app has been launched from another app.
// For iOS version less than 9 we just try to mimic the default iOS 9 status bar.
if (!isIOSVersionLessThan(9))
if (!(isIOS7 || isIOS8))
return;
if (_isVisible == isVisible)
return;

View file

@ -270,7 +270,7 @@
break;
}
UIImage * image = [UIImage imageNamed:name];
if (isIOSVersionLessThan(8))
if (isIOS7)
image = [image imageWithRenderingMode:UIImageRenderingModeAlwaysTemplate];
[btn setImage:image forState:UIControlStateNormal];
}
@ -298,7 +298,7 @@
- (void)refreshButtonsColor
{
if (!isIOSVersionLessThan(8))
if (!isIOS7)
return;
auto const coloring = self.p2pButton.coloring;
self.p2pButton.coloring = coloring;

View file

@ -24,7 +24,7 @@
{
self.title.text = title;
[self.title sizeToFit];
if (isIOSVersionLessThan(8))
if (isIOS7)
[self layoutIfNeeded];
}

View file

@ -60,7 +60,7 @@
self.distanceLabel.text = @(distanceStr.c_str());
}
}
if (isIOSVersionLessThan(8))
if (isIOS7)
[self layoutIfNeeded];
}

View file

@ -13,7 +13,7 @@
- (void)setCenter:(CGPoint)center
{
//TODO(Vlad): There is hack for "cut" iOS7.
if (isIOSVersionLessThan(8))
if (isIOS7)
return;
[super setCenter:center];
}

View file

@ -26,7 +26,7 @@ double correctContentScale()
{
UIScreen * uiScreen = [UIScreen mainScreen];
if (isIOSVersionLessThan(8))
if (isIOS7)
return [uiScreen respondsToSelector:@selector(scale)] ? [uiScreen scale] : 1.f;
else
return [uiScreen respondsToSelector:@selector(nativeScale)] ? [uiScreen nativeScale] : 1.f;

View file

@ -7,7 +7,7 @@
{
UINavigationController * nc = self.sourceViewController.navigationController;
UIViewController * dvc = self.destinationViewController;
if (isIOSVersionLessThan(8))
if (isIOS7)
{
if ([dvc isMemberOfClass:[UINavigationController class]])
[nc presentViewController:dvc animated:YES completion:nil];

View file

@ -306,7 +306,7 @@ NSString * const kAuthorizationSegue = @"Map2AuthorizationSegue";
- (BOOL)hasForceTouch
{
if (isIOSVersionLessThan(9))
if (isIOS7 || isIOS8)
return NO;
return self.view.traitCollection.forceTouchCapability == UIForceTouchCapabilityAvailable;
}
@ -443,7 +443,7 @@ NSString * const kAuthorizationSegue = @"Map2AuthorizationSegue";
- (void)showWhatsNewIfNeeded
{
if (isIOSVersionLessThan(8))
if (isIOS7)
return;
NSUserDefaults * ud = [NSUserDefaults standardUserDefaults];
@ -477,7 +477,7 @@ NSString * const kAuthorizationSegue = @"Map2AuthorizationSegue";
animated:(BOOL)flag
completion:(TMWMVoidBlock)completion
{
if (isIOSVersionLessThan(8))
if (isIOS7)
self.menuRestoreState = self.controlsManager.menuState;
[super presentViewController:viewControllerToPresent animated:flag completion:completion];
}
@ -765,7 +765,7 @@ NSString * const kAuthorizationSegue = @"Map2AuthorizationSegue";
(void)Settings::Get(kAdServerForbiddenKey, adServerForbidden);
bool adForbidden = false;
(void)Settings::Get(kAdForbiddenSettingsKey, adForbidden);
if (isIOSVersionLessThan(8) || adServerForbidden || adForbidden)
if (isIOS7 || adServerForbidden || adForbidden)
{
self.appWallAd = nil;
return;

View file

@ -639,7 +639,7 @@ void InitLocalizedStrings()
navigationBar.shadowImage = [UIImage imageWithColor:[UIColor fadeBackground]];
navigationBar.titleTextAttributes = [self navigationBarTextAttributes];
// Workaround for ios 7 crash.
if (!isIOSVersionLessThan(8))
if (!isIOS7)
navigationBar.translucent = NO;
}

View file

@ -36,7 +36,7 @@ static NSString * const kAlohalyticsLocationRequestAlwaysFailed = @"$locationAlw
m_locationManager.delegate = self;
[UIDevice currentDevice].batteryMonitoringEnabled = YES;
[self refreshAccuracy];
if (!isIOSVersionLessThan(9))
if (!(isIOS7 || isIOS8))
m_locationManager.allowsBackgroundLocationUpdates = YES;
m_locationManager.pausesLocationUpdatesAutomatically = YES;
m_locationManager.headingFilter = 3.0;

View file

@ -49,7 +49,7 @@ typedef NS_ENUM(NSUInteger, Section)
self.tableView.backgroundView = nil;
bool adServerForbidden = false;
(void)Settings::Get(kAdServerForbiddenKey, adServerForbidden);
if (isIOSVersionLessThan(8) || adServerForbidden)
if (isIOS7 || adServerForbidden)
sections = {SectionMetrics, SectionMap, SectionRouting, SectionCalibration, SectionStatistics};
else
sections = {SectionMetrics, SectionMap, SectionRouting, SectionCalibration, SectionAd, SectionStatistics};

View file

@ -39,7 +39,7 @@
- (void)showAlert:(NSString *)alert withButtonTitle:(NSString *)buttonTitle
{
if (isIOSVersionLessThan(8))
if (isIOS7)
{
UIAlertView * alertView = [[UIAlertView alloc] initWithTitle:alert
message:nil