Status bars display a collection of status items that provide interaction with or feedback to the user, such as a menu or an image reflecting an application’s state. A system-wide status bar resides at the right side of the menu bar and is the only status bar currently available.
Questions tagged [uistatusbar]
449 questions
0
votes
1 answer
How to prevent status bar disappearing before UIImagePickerController covers the whole screen?
Here's a GIF showing the issue:
When presenting a UIImagePickerController like this:
self.present(imagePicker, animated: true, completion: nil)
the status bar disappears before the image picker is full screen.
The issue I have with this is that as…

Andrés Pizá Bückmann
- 488
- 1
- 4
- 12
0
votes
4 answers
Put status Bar Color in LightContent
I try to put my Status Bar in Light Content.
The problem is that I have set View controller-based status bar
appearance to YES .
In my ViewController I put :
override open var preferredStatusBarStyle: UIStatusBarStyle {
return…

Max0u
- 691
- 1
- 9
- 21
0
votes
1 answer
UIStatusBar Translucent Style
I've mentioned some new trends in "Segue-Navigation" paradigm from Apple.
In apps like Apple Music, Health or News all main "start-point" controllers do not have navigation bar. Instead - there is a big bold beautiful title.
I'd like to do the same…
user6485277
0
votes
1 answer
Overriding view controller based status bar appearance
I have an app with view controller based status bar appearance set to YES. Some of my views have dark, some of my views have light content, and the app has a pretty complex view controller hierarchy, but it works perfectly with subclassing and…

Can Poyrazoğlu
- 33,241
- 48
- 191
- 389
0
votes
0 answers
Bootstrap status bar design
I'm currently working on a form that has multiple sections. Each section has multiple questions. The number of section ranges from 5-10 and the number of questions in each sections varies as well. All this determines based on the answers from first…

user2149910
- 87
- 3
- 12
0
votes
1 answer
Swift 3 hide status bar after ViewController init
I have a UIViewcontroller sub-class with the following properties:
override var preferredStatusBarUpdateAnimation: UIStatusBarAnimation {
return .slide
}
override var preferredStatusBarStyle: UIStatusBarStyle {
return…

Fred Faust
- 6,696
- 4
- 32
- 55
0
votes
1 answer
View Controller's Main View is sometimes under status bar, sometimes not
I have a View Controller with one main image covering the whole of the view, and a few buttons. When I get to this view through a push segue from the previous controller, the view is shifted downwards below the status bar, showing a black strip…

Jacobo Koenig
- 11,728
- 9
- 40
- 75
0
votes
1 answer
Bug in set StatusBar Style in iOS 10.1 Xamarin(iOS)
I am struggling last 30 Mintues to change the StatusBar Style to Dark so that. My Text and Icon are display as White. I try lots of thing But nothing is work for me.
Problem Image :
What I have tried :
1. In the AppDelegate.FinishedLaunching()…

Harshad Pansuriya
- 20,189
- 8
- 67
- 95
0
votes
1 answer
In-call status bar for app
I would like to know if there is a way to make your app show a status bar when the app is performing a specific function. Sort of like Shazam does when Auto Shazam is on, but this might be because the microphone and not something in Shazam's app…

Kevin Furmanski
- 110
- 6
0
votes
1 answer
Hiding Status Bar of UIPageViewController in Swift 3.0 iOS
Please Read the question before marking it as duplicate.
I know there are a lot of questions regarding Hiding Status Bar of a View Controller in iOS. But none of them solves my problem.
I am using Swift - 3.0
Here is my scenario:
I am able to hide…

PGDev
- 23,751
- 6
- 34
- 88
0
votes
0 answers
Showing status bar push down all views
I have this setup:
A view controller (MAIN) with a scroll view that goes to all edges, and 4 child view controllers (A, B, C and D) inside that scroll view. The first 3 controllers (A, B and C) are tutorials, and the fourth one (D) is a choose login…

Dani Pralea
- 4,545
- 2
- 31
- 49
0
votes
3 answers
UITableViewController and UIStatusbar
Scrolling in my UITableViewController with several items makes the the cell appear behind my UIStatusBar. I tried to do a work around using this method:
var bounds = self.view.bounds
bounds.origin.y -= 20.0;
self.view.bounds = bounds
//…

JVS
- 2,592
- 3
- 19
- 31
0
votes
1 answer
Objective C Navigation Bar does not adjust when StatusBar changes
We have a problem where the user is using our app on the iPhone and receives a call while on a view that has been presented by the rootviewcontroller and is covering the navigation controller and it's nav bar. The status bar for the call shows and…

inosu812
- 101
- 2
- 9
0
votes
4 answers
Swift - Is it possible to set a specific Status Bar color for ALL view controllers?
i searched and searched and so far i only found answers for:
Choosing a specific color for specific view controllers
Making Status Bar color change according to its current View Controller
i need to know: is it possible to decide on a universal…

MarkosDarkin
- 315
- 3
- 20
0
votes
1 answer
After NavigationBarHidden,StatusBar so bad
If i set NavigationBarHidden = YES,I cannot set statusBackgroundcolor.
So how can i solve this issue?
enter image description here

xy.Niu
- 1
- 2