iOS Question (Solved ) Toolbar is not visible in TestFlight

Alex_197

Well-Known Member
Licensed User
Longtime User
Hi all.
I have a toolbar on the bottom of the screen in my app. It's visible in Debug mode. When I uploaded my app to the iTuneConnect and open it on the same iPhone in TestFlight the toolbar is missing.

Now my app was approved for sale, I installed it on my phone - the toolbar is missing.

Am I did something wrong?

Thanks.
 
Last edited:

Alex_197

Well-Known Member
Licensed User
Longtime User
To all who is interesting

B4X:
Private Sub Application_Start (Nav As NavigationController)   
    Try
        NavControl = Nav
        
        'Nav.ToolBarVisible=True ' - Hidden in Release and visible in Debug
        'NavControl.ToolBarVisible=True ' - Hidden in Release and visible in Debug
        Login.Show
        NavControl.ToolBarVisible=True ' - Visible in Release and Debug
    Catch
        Log("Main_Application_Start " & LastException.description)       
    End Try
    
    
End Sub

So question is - why it like that?
 
Upvote 0
Top