diff --git a/Objective-C/TOCropViewController/TOCropViewController.m b/Objective-C/TOCropViewController/TOCropViewController.m index 214c663d..9b2faf1d 100755 --- a/Objective-C/TOCropViewController/TOCropViewController.m +++ b/Objective-C/TOCropViewController/TOCropViewController.m @@ -241,6 +241,9 @@ - (UIStatusBarStyle)preferredStatusBarStyle // Even though we are a dark theme, leave the status bar // as black so it's not obvious that it's still visible during the transition + if (@available(iOS 13.0, *)) { + return UIStatusBarStyleDarkContent; + } return UIStatusBarStyleDefault; }