Opa, blza?
In his override func viewDidLoad()
from your input view (the initial view controller), add the following code to call your Popupview. Doing this it will start the first view, and over it the Popupview.
let vc = self.storyboard?.instantiateViewController(withIdentifier: "PopUpView") as! PopUpView
self.present(vc, animated: true, completion: nil)
Put a back button in Popupview and call in your code, to return an initial view, will be the following:
navigationController?.popViewController(animated: true)
dismiss(animated: true, completion: nil)
If you just want to add an incoming animation to your app, use Launchscreen.storyboard, which will be your spahs.
would be like a logo or app presentation? Make this view in the Launchscreen.storyboard class, it is presented when opening the application, after a while is directed to the application itself
– Tatsunori Asahide
I get it, I’ll check it out later.
– Victor OCV