私はmanifest.plistファイルを持っています(Appleから来ました)。これはXMLファイルです。構造の例を次に示します。
<?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>id</key>
<string>3214</string>
<key>name</key>
<dict>
<key>en</key>
<string>Hello World</string>
<key>jp</key>
<string>Hello World JP</string>
</dict>
<key>kilometers</key>
<integer>430</integer>
<key>cloud</key>
<true/>
</dict>
</plist>
このXMLをsimplexmlを使用してオブジェクトとして取得できます。ここで、XMLのいくつかの値を変更したいと思います(たとえば、クラウドをjp文字列値のfalseに変更します)。