Download Images Using NSURLConnection

How to download images from a server using NSURLConnection?

Just need to get the images' link and then 

NSMutableURLRequest *request = [[NSMutableURLRequest alloc] initWithURL:urlRequest
                                                                cachePolicy:NSURLRequestReloadIgnoringCacheData
                                                            timeoutInterval:10];

    self.connection = [[[NSURLConnection alloc] initWithRequest:request
                                                       delegate:self] autorelease];

Don't need set "Post" or "Get", also don't need set the http body.

That's all right!

Blues



你可能感兴趣的:(Download Images Using NSURLConnection)