A link should open the app. I\'ve got that to work. I just want to know how to pass a parameter. Let\'s say the url is \"addappt://?code=abc\". When a view controller pops u
Here is a nice tutorial on Using Custom URL Scheme in iOS
As in the tutorial, you should parse the URL parameters and store them to use in the app in this method:
- (BOOL)application:(UIApplication *)application handleOpenURL:(NSURL *)url { // Do something with the url here }