Startup iOS View

From the App.open event, is there a way to programmatically tell Xojo which particular view to display?

Say that the program should normally display the “main” view when the app starts. However, the app might contain sensitive user info (if the users wishes to provide it). Due to this, they might want a password view to display instead of the “main” view when the app starts.

It isn’t possible from the App.Open event, but you could set the default view to some sort of splashscreen view.
Then in that view, decide to display the main view or the password view using Currentscreen.content

2 Likes