💾Manifest.plist
記錄 playground book 的檔案結構與屬性。
下面是「學習程式設計 2」與空白範本的 Manifest.plist
檔:
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>Chapters</key>
<array>
<string>Document8.playgroundchapter</string>
<string>Document9.playgroundchapter</string>
<string>Document10.playgroundchapter</string>
<string>Document11.playgroundchapter</string>
<string>Document12.playgroundchapter</string>
<string>Document13.playgroundchapter</string>
</array>
<key>ContentIdentifier</key>
<string>com.apple.playgrounds.learntocode2.edition3</string>
<key>ContentVersion</key>
<string>6.0.2</string>
<key>DeploymentTarget</key>
<string>ios12.0</string>
<key>DevelopmentRegion</key>
<string>en</string>
<key>ImageReference</key>
<string>Images/LtC2-icon.png</string>
<key>MinimumSwiftPlaygroundsVersion</key>
<string>3.1</string>
<key>Name</key>
<string>Name</string>
<key>SupportsDarkMode</key>
<true/>
<key>SwiftVersion</key>
<string>5.1</string>
<key>UserAutoImportedAuxiliaryModules</key>
<array>
<string>Book</string>
</array>
<key>UserModuleMode</key>
<string>Disabled</string>
<key>Version</key>
<string>6.1</string>
</dict>
</plist>
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>Chapters</key>
<array>
<string>Chapter1.playgroundchapter</string>
</array>
<key>ContentIdentifier</key>
<string>com.apple.playgrounds.blank</string>
<key>ContentVersion</key>
<string>1.0</string>
<key>DeploymentTarget</key>
<string>ios-current</string>
<key>DevelopmentRegion</key>
<string>en</string>
<key>SwiftVersion</key>
<string>5.1</string>
<key>Version</key>
<string>7.0</string>
<key>UserAutoImportedAuxiliaryModules</key>
<array/>
<key>UserModuleMode</key>
<string>Full</string>
</dict>
</plist>
Last updated