I had async NSURLConnections working just fine when I was using my viewController as the delegate, have all sorts of connections now and I want to do them all through a singleton Connection object. So
NSURLConnection delegate method is not called (didReceiveResponse,connectionDidFinishLoading etc) .when i am using a same class delegate methods called properly
I have various image size files loaded on each URL and would like to download the data at the same time without using multiple calls to each URL. I am trying to loop through the URL using a variable a
Apparently, NSURLConnection automatically decodes gzipped responses. But, can it gzip encode its requests? If so, how? Or, does it do this automatically too开发者_StackOverflow?An HTTP request body ca
NSString *sttr=[[NSString alloc]init ];开发者_运维知识库 NSURL *jsonURL; NSString *strurl; sttr =@\"|7 Harvard Drive, Plymouth, MA, 02360, |9121 SW 174th St., Miami, FL, 33157, |7 Harvard Drive, Plym
I have a problem getting a UIActivityIndicatorView to show when I collect data from a server with help from the NSURLConnection request.
I have an iOS app that requests JSON data from my Rails 3 app, hosted on Heroku, and it works great on my device and for many other users, except one.I have one user who has told me that my app fails
i wrote an iphone app which uses NSMutableURLRequest and NSURLConnection to call .php script on a server which gives an image back with the commands file_get_contents and echo.
I need to load data from a REST service, but the result is always (null) when I have any accentuation. I开发者_运维百科 know this is an encoding problem but NSUrlConnection gives me no solution. The b
I am currently using NSURLConnection to download some date from a database through a php script on a server.