Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/meniny/infoplist
πInfo.plist assistant.
https://github.com/meniny/infoplist
info-plist xcode
Last synced: 25 days ago
JSON representation
πInfo.plist assistant.
- Host: GitHub
- URL: https://github.com/meniny/infoplist
- Owner: Meniny
- License: mit
- Created: 2017-07-25T03:40:22.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2019-04-16T02:36:00.000Z (over 5 years ago)
- Last Synced: 2024-10-08T07:47:29.057Z (29 days ago)
- Topics: info-plist, xcode
- Language: Swift
- Size: 294 KB
- Stars: 6
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
## Introduction
`InfoPlist` is an `Info.plist` assistant for Cocoa/Cocoa Touch.
## Requirements
* iOS 8.0+
* watchOS 2.0+
* tvOS 9.0+
* macOS 10.10+
* Xcode 9 with Swift 4## Installation
#### CocoaPods
```ruby
use_frameworks!
pod 'InfoPlist'
```## Usage
```swift
import InfoPlist
``````swift
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?
```