In my project, I have a Table View Controller with class NieuwsViewController
.
I want this VC to be opened when the app is opened through a push message.
I assume this has to be done in AppDelegate.m in 'application didFinishLaunchingWithOptions
' or 'didReceiveRemoteNotification
', but then what?
You can take a look at this to handle URL scheme.
You need to instantiate your
UIViewController
inhandleOpenURL
(withinstantiateViewControllerWithIdentifier
if you use storyboard for example) and then you will be able to present it (or to push it depending what you want).