I have a label in a view which loads a plain text file and displays the content, but it displays weird characters not located in the .txt file along with the real content.
The text file has one line in it : "Update Submitted"
This is what it looks like on the actual device itself.
As you can see, the "Update Submitted" label has 2 weird characters in front of it.
I'm using this code :
content = [NSString stringWithContentsOfURL:[NSURL
URLWithString:@"http://samguichelaar.com/soadstatus.txt"] encoding: 1 error: NULL];
Label1.text = content;
Thanks in advance!