Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

iOS 9 Hide status bar back button

Is there any way to hide new status bar back button introduced in iOS9? I mean the button that is visible after launching application by [UIApplication openURL:].

like image 826
mkr833 Avatar asked Aug 07 '15 06:08

mkr833


People also ask

How can hide back button in iOS?

To hide the back button on navigation bar we'll have to either set the navigation button as nil and then hide it or hide it directly. Let's create a project, add 2 view controller and Embed them in navigation controller.

How do I get rid of the back button on my navigation?

Touch “Settings” -> “Display” -> “Navigation bar” -> “Buttons” -> “Button layout”. Choose the pattern in “Hide navigation bar” -> When the app opens, the navigation bar will be automatically hidden and you can swipe up from the bottom corner of the screen to show it.


1 Answers

Every time you use [UIApplication openURL:] iOS9 will generate the back button to the previous app. This feature is added to enable quick jumping from app to app.

Apple made this private and developers are not allowed to enable or disable this option. Hopefully next versions of iOS will make this not so comfortable feature optional.

like image 114
Bagrat Kirakosian Avatar answered Nov 09 '22 20:11

Bagrat Kirakosian