DNSecure/CustomDNS/BundleExtensions.swift
2020-09-25 18:42:31 +09:00

15 lines
318 B
Swift

//
// BundleExtensions.swift
// CustomDNS
//
// 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
}
}