mirror of
https://github.com/kkebo/DNSecure.git
synced 2026-03-11 08:54:36 +00:00
15 lines
317 B
Swift
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
|
|
}
|
|
}
|