iOS Question How to hide bottom Guideline ?

Erel

B4X founder
Staff member
Licensed User
Longtime User
You cannot completely hide it, however you can make it disappear as long as the user doesn't touch the screen.

Add this to the bottom of the main module:
B4X:
#if OBJC
@end
@interface UIViewController (prefersHomeIndicatorAutoHidden)
@end
@implementation UIViewController (prefersHomeIndicatorAutoHidden)
- (BOOL) prefersHomeIndicatorAutoHidden {
    return true; 
}
#End If
 
Upvote 0

Hector Alcala

Member
Licensed User
Thank you very much, Erel.
As you mentioned, if the user touches the screen, the bar appears briefly and then disappears.
Could the color of that bar be changed?
Thank you very much for your help.
 
Upvote 0
Top