user1595462
user1595462

Reputation: 155

Apple App store accessed programmatically

I would like to display in a button or a form some info from the Apple AppStore page related to the App the user is currently running.

e.g. the price in the current country or the reviews summary.

is there any function that can be called via xcode to extract those details without using additional external libraries?

I am referring to Apps that i created , so i have all the IDs...

Thank you A.

Upvotes: 2

Views: 413

Answers (2)

er0
er0

Reputation: 1834

This page should contain the information you need: http://itunes.apple.com/lookup?id=your_app_id

Upvotes: 3

hotpaw2
hotpaw2

Reputation: 70663

Their is a built-in iOS API for accessing the prices of in-app-purchase items. Otherwise, you may have to research 3rd pary libraries or send the user to a Safari or App store URL for the information.

Upvotes: 1

Related Questions