-
Notifications
You must be signed in to change notification settings - Fork 388
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
statusBarHidden no longer works in iOS 13 #220
Comments
No, sorry. In the end, I did use another lib. |
Well, that's not an open source one. Sorry. |
@trispo im curious, which one did you use? |
I ran into this problem too. I tried all sorts of things but the only one that worked for me was to modify the ViewController that presents the ImageGallery. To show what I did, I made my changes to the example. The only file that has to change is ViewController.swift, see below (search for hideStatusBar). // extension UIImageView: DisplaceableView {} struct DataItem {
} class ViewController: UIViewController {
} extension ViewController: GalleryDisplacedViewsDataSource {
} extension ViewController: GalleryItemsDataSource {
} extension ViewController: GalleryItemsDelegate {
} // Some external custom UIImageView we want to show in the gallery // Extend ImageBaseController so we get all the functionality for free |
When testing our app with iOS 13 we see that hiding the status bar no longer works. Looking into the source code I can see you move the application window above the statusbar window which seems not to work anymore.
The text was updated successfully, but these errors were encountered: