DNSecure/Shared/Extensions/Bundle+displayName.swift
2021-01-11 22:53:54 +09:00

15 lines
317 B
Swift

//
// BundleExtensions.swift
// DNSecure
//
// Created by Kenta Kubo on 9/25/20.
//
import Foundation
extension Bundle {
var displayName: String? {
self.object(forInfoDictionaryKey: "CFBundleDisplayName") as? String
?? self.object(forInfoDictionaryKey: "CFBundleName") as? String
}
}