0

I want to invoke a ios application from browser. If the app is installed, it should redirect to the app. Otherwise, it should continue in the browser it self, with out showing an error pop up message. I tried setTimeOut() in javascript, it not working.

Help me please...

1 Answers1

1

check here How to register a custom app opening URL scheme with Xcode 4?

register a URI to your app, then you can open it via javascript in mobile safari

Community
  • 1
  • 1
lanbo
  • 1,678
  • 12
  • 12
  • I already did it. But, while invoking the application with window.location = "myapp://", if app is not installed, it is throwing me an error. How to handle that. – Praveen Nunna Sep 26 '13 at 06:00
  • Here is the answer. http://stackoverflow.com/questions/9709251/url-scheme-for-app-which-is-not-installed – Woodstock Sep 26 '13 at 06:45
  • App name – Woodstock Sep 26 '13 at 06:46