Oded
Oded

Reputation: 31

Is there a way to send IOS application parameters after installation?

My user presses the following link to download my application:

itms-services:///?action=download-manifest&url=http://aaa.com/myApp.plist?regCode=12345

Can the application get the "regCode" parameter?

Thanks

Upvotes: 0

Views: 328

Answers (1)

Aaron Brager
Aaron Brager

Reputation: 66242

Nope. iOS will download and install the IPA referenced in your plist, but will not pass along any parameters.

Depending on the problem you're trying to solve, you could make slightly different builds with different targets, or have the user login in-app.

Upvotes: 3

Related Questions