介绍
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?