We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
I am wondering why the status bar not visible in the collection view. would you mind helping me make it visible?
The text was updated successfully, but these errors were encountered:
Have you tried overriding the method prefersStatusBarHidden from UIViewController to return false?
prefersStatusBarHidden
UIViewController
false
If you‘re playing with the included example app, you can make this change in ImageCollectionViewController, i.e.:
ImageCollectionViewController
// … class ImageCollectionViewController: UICollectionViewController { // … override var prefersStatusBarHidden: Bool { return false } // was: return true } // …
Sorry, something went wrong.
No branches or pull requests
I am wondering why the status bar not visible in the collection view. would you mind helping me make it visible?
The text was updated successfully, but these errors were encountered: