Bundle.swift 299 B

12345678910111213141516
  1. //
  2. // Bundle.swift
  3. // OmniBLE
  4. //
  5. // Created by Darin Krauss on 1/23/21.
  6. // Copyright © 2021 LoopKit Authors. All rights reserved.
  7. //
  8. import Foundation
  9. extension Bundle {
  10. var bundleDisplayName: String {
  11. return object(forInfoDictionaryKey: "CFBundleDisplayName") as! String
  12. }
  13. }