fixed to correctly hide info button on iOS 10.0+. Previous version was crashing the app
This commit is contained in:
parent
dd29b05ec3
commit
894cb50d7f
@ -72,7 +72,13 @@
|
||||
}
|
||||
|
||||
// Hack to hide the bottom bar's Info button... originally based on http://stackoverflow.com/a/16353530
|
||||
UIView *infoButton = [[[[[self.scanReader.view.subviews objectAtIndex:2] subviews] objectAtIndex:0] subviews] objectAtIndex:3];
|
||||
NSInteger infoButtonIndex;
|
||||
if ([[[UIDevice currentDevice] systemVersion] compare:@"10.0" options:NSNumericSearch] != NSOrderedAscending) {
|
||||
infoButtonIndex = 1;
|
||||
} else {
|
||||
infoButtonIndex = 3;
|
||||
}
|
||||
UIView *infoButton = [[[[[self.scanReader.view.subviews objectAtIndex:2] subviews] objectAtIndex:0] subviews] objectAtIndex:infoButtonIndex];
|
||||
[infoButton setHidden:YES];
|
||||
|
||||
//UIButton *button = [UIButton buttonWithType:UIButtonTypeSystem]; [button setTitle:@"Press Me" forState:UIControlStateNormal]; [button sizeToFit]; [self.view addSubview:button];
|
||||
|
Loading…
Reference in New Issue
Block a user