Created
September 7, 2016 15:13
-
-
Save pixelrevision/33a409cf2f0e68b43ac02cdeecf04153 to your computer and use it in GitHub Desktop.
Adds strong typed build info to UIApplication
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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