Bundle - leacode/SwiftWings GitHub Wiki
Source: Sources/Extensions/Foundation/Bundle/Bundle+Extensions.swift
Tests: Tests/Extensions/Bundle
- Reads
CFBundleShortVersionStringfrom the bundle’sinfoDictionaryand exposes it as an optionalString. - Primarily used in diagnostics/UI labels without the boilerplate of reaching into the dictionary each time.
if let version = Bundle.main.appVersion {
print("Current build: v\(version)")
} else {
print("Version unspecified")
}