mirror of
https://github.com/XcodesOrg/XcodesApp.git
synced 2026-03-25 08:55:46 +00:00
15 lines
327 B
Swift
15 lines
327 B
Swift
import Foundation
|
|
|
|
extension Bundle {
|
|
var bundleName: String? {
|
|
infoDictionary?["CFBundleName"] as? String
|
|
}
|
|
|
|
var shortVersion: String? {
|
|
infoDictionary?["CFBundleShortVersionString"] as? String
|
|
}
|
|
|
|
var version: String? {
|
|
infoDictionary?["CFBundleVersion"] as? String
|
|
}
|
|
}
|