0

In my iphone app, i'd like to add the option to "Gift" the app. Basically I like to add a button which pops up the username to whom i want to gift. Is this possible?

Charles
  • 50,943
  • 13
  • 104
  • 142
Satyam
  • 15,493
  • 31
  • 131
  • 244

2 Answers2

1


As far as i know this functionality is part of the App Store and there is no API to provide that functionality in-app.

Cheers
Shai

Shai Mishali
  • 9,224
  • 4
  • 56
  • 83
1

The best you can do is make the "gift" button open up the app store pointing to the app's page (which is still useful, IMO).

Once you have the web URL for your app, tell your UIApplication to open it and the user will land in the App Store app:

How to link to apps on the app store

Make sure you use the itms-apps:// hint below the accepted answer or you'll wind up with a double redirect which is annoying.

Community
  • 1
  • 1
Spyder
  • 1,882
  • 13
  • 23