iOS Question Hide MainPage title B4I designer

Sergio Haurat

Active Member
Licensed User
Longtime User
How can I hide the title bar that says MainPage as shown in the example image? Not only change the title with B4XPages.SetTitle, but disable the bar. I have tried from the designer without success. It also does not support the following B4A attributes.

Search the forum for "iOS hide title" "iOS disable title" "iOS MainPage", all results point to B4A

B4X:
#Region  Activity Attributes
    #FullScreen: True
    #IncludeTitle: False
#End Region


1717700758215.jpeg
 
Solution
Solution:
B4X:
Private Sub Application_Start (Nav As NavigationController)
    NavControl = Nav
    Dim PagesManager As B4XPagesManager
    PagesManager.Initialize(NavControl)
    NavControl.NavigationBarVisible = False
    NavControl.ToolBarVisible = False
End Sub

Sergio Haurat

Active Member
Licensed User
Longtime User
Solution:
B4X:
Private Sub Application_Start (Nav As NavigationController)
    NavControl = Nav
    Dim PagesManager As B4XPagesManager
    PagesManager.Initialize(NavControl)
    NavControl.NavigationBarVisible = False
    NavControl.ToolBarVisible = False
End Sub
 
Upvote 0
Solution
Top