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.
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