Skip to content

Commit

Permalink
Force light mode in view controller
Browse files Browse the repository at this point in the history
  • Loading branch information
Sara Alemanno committed Feb 13, 2023
1 parent 0a8fb1a commit 8415b18
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions QueueITLib/QueueITWKViewController.m
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,10 @@ - (void)viewDidLoad{
self.view.bounds.size.height - navigationBarOffset) configuration:config];
view.navigationDelegate = self;
self.webView = view;

if (@available(iOS 13.0, *)) {
self.overrideUserInterfaceStyle = UIUserInterfaceStyleLight;
}
}

- (void)viewWillAppear:(BOOL)animated{
Expand Down

0 comments on commit 8415b18

Please sign in to comment.