Skip to content

Instantly share code, notes, and snippets.

@pixelrevision
Created September 7, 2016 15:13
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save pixelrevision/33a409cf2f0e68b43ac02cdeecf04153 to your computer and use it in GitHub Desktop.
Save pixelrevision/33a409cf2f0e68b43ac02cdeecf04153 to your computer and use it in GitHub Desktop.
Adds strong typed build info to UIApplication
import Foundation
extension UIApplication {
var build: String {
return NSBundle.mainBundle().infoDictionary!["CFBundleVersion"] as! String
}
var version: String {
return NSBundle.mainBundle().infoDictionary!["CFBundleShortVersionString"] as! String
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment