Right now I am using an array like this:
Code:
NSString *exampleStrings[100];
exampleStrings[0]=@"";
exampleStrings[1]=@"";
...
...
NSArray *exampleStringsArray = [NSArray arrayWithObjects:exampleStrings count:100];
I am trying to download an array from the internet and save it to a file to be read in place of creating a static array like this so that I can update it by changing it on the web, but I dont know how to do this.
How can I download an array from the web, and then also save and read it later? I have a web site to put it on.