Hey.
I am currently using [NSString stringWithContentsOfURL:url]
to download the contents of an external webpage to my app.
Is there any other way that might be faster or better/safer?
Hey.
I am currently using [NSString stringWithContentsOfURL:url]
to download the contents of an external webpage to my app.
Is there any other way that might be faster or better/safer?
look up NSURLConnection. It runs asynchronously and therefore won't slow down or temporarily crash your application.