InfoPlist 1.3.0

InfoPlist 1.3.0

测试已测试
语言语言 SwiftSwift
许可协议 MIT
发布上次发布2019年4月
SPM支持 SPM

Meniny 维护。



InfoPlist 1.3.0

介绍

InfoPlist 是 Cocoa/Cocoa Touch 的 Info.plist 辅助工具。

要求

  • iOS 8.0+
  • watchOS 2.0+
  • tvOS 9.0+
  • macOS 10.10+
  • Xcode 9 with Swift 4

安装

CocoaPods

use_frameworks!
pod 'InfoPlist'

使用

import InfoPlist
let infoDictionary = InfoPlist.dictionary // [String: Any]?

_ = InfoPlist.getStringValue(forKey: "CFBundleDisplayName") // String?
_ = InfoPlist.getStringValue(forKey: "CFBundleVersion") // String
_ = InfoPlist.getBool(forKey: "UIStatusBarHidden") // Bool

_ = InfoPlist.isStatusBarHidden // Bool
_ = InfoPlist.iTunesFileSharingEnabled // Bool
_ = InfoPlist.cameraUsageDescription // String?