私はxcodeで作業しています。XML ファイルに変換してから Web データベースにアップロードしたいデータの NSArray があります。
配列は次のようにフォーマットされます。
555ttt Conor Brady testpass BC test Desc this is user timestamp this is location this is user location
以下に示すように、XMLファイルに変換したい:
<plates>
<plate>
<plateno>555ttt</plateno>
<user>Conor Brady</user>
<username>cbrady</username>
<password>testpass</password>
<province>BC</province>
<description>test desc</description>
<usertimestamp>this is user timestamp</usertimestamp>
<location>this is user location</location>
<status>this is user status</status>
</plate>
<plate>
<plateno>333yyy</plateno>
<user>C Brady</user>
<username>cbrady</username>
<password>testpass</password>
<province>BC</province>
<description>This is a test description</description>
<usertimestamp>this is user timestamp</usertimestamp>
<location>this is user location</location>
<status>this is user status</status>
</plate>
</plates>
なにか提案を?