Hide home button on iPhone X

310 Views Asked by At

I have to figure out a way to hide the home button for all of my View controllers in the app.

Yes

override var prefersHomeIndicatorAutoHidden: Bool {
        return true
    }

is an option but what if I have like 100 VCs, is this the only way? I use navigation controller so I tried to override this property there, but it doesn't seems to have a reflection on the others as well. Any ideas? Thanks in advance.

0

There are 0 best solutions below