DNSecure/DNSecure/BundleExtensions.swift
2020-09-25 18:54:07 +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
}
}