The code in IOS gets the current version number

Source: Internet
Author: User

[1] Concept

The version number of iOS, which is called version, is called Build, and both values can be selected in Xcode and then clicked "Summary" to see. The key for version in the plist file is "cfbundleshortversionstring", which is the same as the version number on AppStore, and the key to build in Plist is "cfbundleversion". Represents the version number of build, which should be incremented by 1 after each build. Both of these values can be obtained in the program through the following code:

[[[NSBundle mainBundle] infoDictionary] valueForKey:@"key"]

[2] Concrete implementation

The code implementation obtains the Verison number of the application:

[[[NSBundle mainBundle] infoDictionary] objectForKey:@"CFBundleShortVersionString"]
Or
[[NSBundle mainBundle] objectForInfoDictionaryKey:@"CFBundleShortVersionString"];
 Get Build Number:
[[[NSBundle mainBundle] infoDictionary] objectForKey:@"CFBundleVersion"]

The code in IOS gets the current version number

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.