get build number swift code example

Example 1: swift get app version and build

import Foundation

extension Bundle {

    var shortVersion: String {
        if let result = infoDictionary?["CFBundleShortVersionString"] as? String {
            return result
        } else {
            assert(false)
            return ""
        }
    }

    var buildVersion: String {
        if let result = infoDictionary?["CFBundleVersion"] as? String {
            return result
        } else {
            assert(false)
            return ""
        }
    }

    var fullVersion: String {
        return "\(shortVersion)(\(buildVersion))"
    }
}

// Usage:

someLabel.text = Bundle.main.versionNumber

Example 2: swift get app version and build

let appVersion = Bundle.main.infoDictionary?["CFBundleShortVersionString"] as? String