We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7119c2f commit 37f6080Copy full SHA for 37f6080
Classes/ExplorerInterface/FLEXExplorerViewController.m
@@ -403,8 +403,12 @@ - (void)hierarchyButtonTapped:(FLEXExplorerToolbarItem *)sender {
403
}
404
405
- (UIWindow *)statusWindow {
406
- NSString *statusBarString = [NSString stringWithFormat:@"%@arWindow", @"_statusB"];
407
- return [UIApplication.sharedApplication valueForKey:statusBarString];
+ if (!@available(iOS 16, *)) {
+ NSString *statusBarString = [NSString stringWithFormat:@"%@arWindow", @"_statusB"];
408
+ return [UIApplication.sharedApplication valueForKey:statusBarString];
409
+ }
410
+
411
+ return nil;
412
413
414
- (void)recentButtonTapped:(FLEXExplorerToolbarItem *)sender {
0 commit comments