Skip to content

Instantly share code, notes, and snippets.

@dannolan
Created September 25, 2014 23:23
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 dannolan/8723c04dc0e05549a3e9 to your computer and use it in GitHub Desktop.
Save dannolan/8723c04dc0e05549a3e9 to your computer and use it in GitHub Desktop.
App Info Gist
import Foundation
class AppInfo {
class func appVersion () -> String{
let infoDictionary = NSBundle.mainBundle().infoDictionary
if let versionString:AnyObject = infoDictionary["CFBundleShortVersionString"]{
return "\(versionString)"
}else{
return "No Version"
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment