My app is using Storyboards. I want to post the hierarchy here:
view Controller > tab bar controller > navigation controller > TableViewController > DetailViewController
This detail view controller has an identifier I set through interface builder also.
Select an item on the table shows a detail view.
I have enabled custom URLs in my app and everything works fine except and receives a call from other apps by using myappname://uniqueid
I want to display the Detail View I spoke about earlier when I recieve a custom URL call but I don’t know how.
I have instantiated the view controller using its identifier but I don’t know how to display it without throwing an error.
How can I show the view in this storyboard directly from appdelegate openUrl:source application method?
The solution to this problem was to have a Notification from the AppDelagate to all view Controller and when the correct view Controller receives this notification from AppDelegate custom URL delegate, the view can be loaded modally.