LicensePlist
LicensePlist copied to clipboard
Support ViewController
Support ViewController Output like AcknowList.
It is better to support as another library.
- Read plists from
XXX.bundle
. - Present it as list/detail view controllers.
XXX.bundle can be accessed like this:
let plistDir = URL(fileURLWithPath: Bundle.main.path(forResource: "Settings", ofType: "bundle")!)
.appendingPathComponent("com.mono0926.LicensePlist")
try! FileManager.default.contentsOfDirectory(at: plistDir, includingPropertiesForKeys: [], options: [])
.forEach { print($0) }
I made LicensePlistViewController. https://github.com/yhirano/LicensePlistViewController
Thanks! I’m considering how to treat this issue for a moment 🐶