home, SWIFT, updated 2022-01-02 13:53:44 How do I get the App version using Swift? To get App version in swift Use if let appVersion = Bundle.main.infoDictionary?["CFBundleShortVersionString"] as? String{ // appVersion contains your value }
post a comment