I am trying to present another ViewController from storyboard when app launches, for example like from WhatsNew Kit or Welcome Screen but it is custom made is it possible? If so how do I present it
How to present second viewcontroller at app launch
What do you want to get exactly ?
If you want to go directly to another VC
launch on a first VC
then switch to another one ?
based on what event ? Existence of some news for instance ?
If you want to go directly to another VC
change the entry point in IB storyboard, you'll go to another VC.
I want to launch app with first VC and over it launch another saying some information with button on bottom which will have dismiss action to close it. Like for example when there is update in some app they tend to tell whats new
OK, so follow the first option:
Create a segue from 1st VC to 2nd VC that you will fire with performSegue from viewDidLoad for instance after testing the condition.
Have you tried to do so ?
Create a segue from 1st VC to 2nd VC that you will fire with performSegue from viewDidLoad for instance after testing the condition.
Have you tried to do so ?