Get version information for an iOS app from AppStore

Source: Internet
Author: User

Do an iOS app under normal circumstances, AppStore will prompt for updates, but if the user does not push, or do not open AppStore, is not aware of the new version, so to do version update reminders, when there is a new version of the AppStore, prompting the user to update. The key is how to get the version information on the AppStore, which can be queried via the rest interface provided by Apple.

NSString *urlstr = [[NSString alloc] initwithformat:@ "Http://itunes.apple.com/lookup? id=%@ "@" AppID "];//appid is a 9-digit number

You can use the POST request to obtain information about the app;

Replace the contents of the ID with your own AppID, you can get a JSON content, the content is very clear, a look at it, there is a version of information, there are corresponding update information, app address and so on.

By the way, how to obtain the version information of this product.

nsstring* thisversion = [[NSBundle mainbundle] Objectforinfodictionarykey: (nsstring*) Kcfbundleversionkey];

Or

NSString *key = @ "cfbundleversion";

NSString *currentversion = [nsbundle mainbundle]. Infodictionary[key];

Jump to the AppStore product page, get the JSON trackviewurl directly, and jump to the past in the following way.

Nsurl * url = [Nsurl urlwithstring:urlstr];

[[UIApplication sharedapplication] openurl:url];

Get version information for an iOS app from AppStore

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.