Skip to content

Instantly share code, notes, and snippets.

@13protons
Created August 23, 2012 20:45
Show Gist options
  • Select an option

  • Save 13protons/3441482 to your computer and use it in GitHub Desktop.

Select an option

Save 13protons/3441482 to your computer and use it in GitHub Desktop.
Very Simple PLIST example
<?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>quiz</key>
<dict>
<key>question</key>
<array>
<dict>
<key>text</key>
<string>What does 'API' stand for?</string>
<key>answer</key>
<string>API stands for Application Programming Interface.</string>
</dict>
<dict>
<key>text</key>
<string>What's so good about pragmatic REST?</string>
<key>answer</key>
<string>It's focused on the api consumer, so it makes it easier for developers to contribute to your app library!</string>
</dict>
</array>
</dict>
</dict>
</plist>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment