0

I want to create a link using HTML5 which will launch my iOS application when user open it and pass an argument to my app.

Is it possible to accomplish? and if yes, can anyone help how to achieve it? and what should I add in my project to handle these argument? Thanks.

Iphone User
  • 1,930
  • 2
  • 17
  • 26
  • Use deep linking concept, http://blog.originate.com/blog/2014/04/22/deeplinking-in-ios/ Let me know if you need example. – jaym Dec 02 '14 at 13:16

1 Answers1

1

Go through tutorial about URLSchemes:

Launch an app from within another (iPhone)

https://developer.apple.com/library/iOs/featuredarticles/iPhoneURLScheme_Reference/Introduction/Introduction.html

It requires few parameters settings in info.plist and a method handling in AppDelegate class: application:willFinishLaunchingWithOptions: method

Hope this will give you initial start for study.

Community
  • 1
  • 1
Mrunal
  • 13,982
  • 6
  • 52
  • 96