The code I have right now looks like this:
NSString *path = @"/Users/student/Desktop/conf.txt"
NSArray *myArray = [NSArray arrayWithObjects:@"hello",@"world",@"etc",nil];
[myArray writeToFile:path atomically:YES];
When I look at the text file it writes it ends up looking like this:
<?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">
<array>
<string>hello</string>
<string>world</string>
<string>etc</string>
</array>
</plist>
I don't want to display it as an html, I just want a simple text document with the 3 lines saying, "hello world etc".
Does anybody know how I could fix this?
Thanks