How they can see the content in my app overlaps the content bar. I don't want my app to be like this. How can I remove the content bar and make my app; full screen?.
If you want to hide it for the whole application, you have to go to your info.plist and assign a value to the named key View controller-based status bar appearanceand give it the value NO, and also add the new key Status bar is initially hiddenand set it to YES.
Implement the following method in your controller:
If you want to hide it for the whole application, you have to go to your info.plist and assign a value to the named key
View controller-based status bar appearance
and give it the valueNO
, and also add the new keyStatus bar is initially hidden
and set it toYES
.