Skip to content

Instantly share code, notes, and snippets.

@atierian
Created December 23, 2020 14:20
Show Gist options
  • Select an option

  • Save atierian/889c5bc88a0fce930bc6c0cff4c3eca7 to your computer and use it in GitHub Desktop.

Select an option

Save atierian/889c5bc88a0fce930bc6c0cff4c3eca7 to your computer and use it in GitHub Desktop.
var versionLabelText: String {
guard let version = Bundle.main.infoDictionary?["CFBundleShortVersionString"] as? String,
let build = Bundle.main.infoDictionary?["CFBundleVersion"] as? String
else { return "" }
return "App Version: " + version + "." + build
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment