I am currently using [NSString stringWithContentsOfURL:url]
to download the contents of an external webpage to m开发者_StackOverflowy 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.
精彩评论