How to download images from a server using NSURLConnection? url
Just need to get the images' link and then code
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. server
That's all right! get
Blues it