Search code examples
iosswiftvlc

What is the main Storyboard called in VLC ios?


Im trying to modify and learn from the ios open source code for ios.

Its a mixture of Objective C and Swift.

Is it possible to tell from the repo what the main storyboard is called? Id like to add a login screen that redirects back to the Initial screen but not sure how to get the Storyboard name

Here is the repo

https://github.com/videolan/vlc-ios


Solution

  • There is no “main storyboard”.

    The app is created from the app delegate (like all apps were “back in the day”).

    https://github.com/videolan/vlc-ios/blob/master/Sources/VLCAppDelegate.m

    You can see in the function applicationDidFinishLaunching it creates a tabBarController and window and the passes the tab bar controller into a coordinator that will populate it with other view controllers.

    This was the norm for all apps once. And is still a perfectly viable option for apps now too.