I want to write an array to a file, but then I got this: (the file is an .txt file
<plist>
<array>
<string>Jeroen</string>
<real>9.5</real>
</array>
</plist>
In my code I have:
[Leerling writeToURL:fileURL atomically:YES];
But I want in the .txt file: NAME + , + SCORE only, how can I do this?
Then you can’t use the built in function, you have to make your own.
Possible pseudocode solution:
Requested in comment