Is it possible to handle the call of an URL Scheme inside the same app?
Here's an example: There is an html link in my app that opening would trigger safari. What I want to do is to tap on that link and that no matter where i am in the app a viewcontroller gets pushed with a webview on it.
If this is possible, where I have to do it? If I handle URL Scheme's calls i need to do it on the app's delegate. Where should i do it in this case? If the viewcontroller needs to be pushed, who is the responsible of pushing it? The appdelegate or the view controller thats currently on screen?
Thanks :)