Fixes and updates to iOS.
Move dependencies into Podfile where possible. IASK doesn't wrap properly; just removed it. Fixes to safe area and content insets.
This commit is contained in:
@@ -18,7 +18,6 @@
|
||||
|
||||
#import "MPLogsViewController.h"
|
||||
#import "MPiOSAppDelegate.h"
|
||||
#import "MPAppDelegate_Store.h"
|
||||
|
||||
@implementation MPLogsViewController
|
||||
|
||||
@@ -52,6 +51,17 @@
|
||||
PearlRemoveNotificationObservers();
|
||||
}
|
||||
|
||||
#pragma clang diagnostic push
|
||||
#pragma ide diagnostic ignored "UnavailableInDeploymentTarget"
|
||||
- (void)viewSafeAreaInsetsDidChange {
|
||||
|
||||
[super viewSafeAreaInsetsDidChange];
|
||||
|
||||
self.logView.contentInset = UIEdgeInsetsMake( 44, 0, 0, 0 );
|
||||
self.logView.scrollIndicatorInsets = UIEdgeInsetsMake( 44, 0, 0, 0 );
|
||||
}
|
||||
#pragma clang diagnostic pop
|
||||
|
||||
- (IBAction)toggleLevelControl:(UISegmentedControl *)sender {
|
||||
|
||||
BOOL traceEnabled = (BOOL)self.levelControl.selectedSegmentIndex;
|
||||
|
Reference in New Issue
Block a user