nsurlconnection
iPhone - May an async NSURLConnection HTTP response interfer with running process?
I have a request : [NSURLConnection connectionWithRequest:urlRequest delegate:self]; that is launched. When I receive at any time :[详细]
2023-03-27 18:56 分类:问答Order of Requests in ASIHTTPRequest
I am using ASIHTTPRequest to download some data. I have the following in amethod: // Request 1 request1.tag = 1;[详细]
2023-03-27 15:46 分类:问答How to make sure I have only 1 asynchronous NSURLConnection at a time?
I\'m creating an app which communicates alot with a server. I want to make sure I have only 1 connection at a time - only 1 request pending. I want so that if I try to send anothe开发者_开发百科r req[详细]
2023-03-26 16:19 分类:问答why is nsurlconnection slow to start
I create an NSURLConnection and make a call to my url (which is to the local apache on my macbook). The php file it calls immediately returns \'\';It\'s taking the NSURLConnection 3-5 seconds. If I ac[详细]
2023-03-26 10:50 分类:问答Proxies with NSURLRequest
I\'m using NSURLConnection and NSURLRequest to make a connection to a server for my OS X app. Now I would like to implement a specific proxy server connection but I cannot find something about it in[详细]
2023-03-25 09:48 分类:问答HTTP Request Memory leaks
I\'m using this code, but when profiling, it tells me I have a many memory leaks within response_error, request and _response variables.[详细]
2023-03-25 09:09 分类:问答Problem with REST API on iPhone
I\'m working on an iPhone app that will interact with a web service using RESTful API. I use NSURLConnection to do the work. The network code was working very well for all my needs until today.[详细]
2023-03-25 04:28 分类:问答Setting timeout on a delegate method in objective c
i need to set a NSTimer object to manually timeout a server call if it is taking more than 10 seconds (not supported in Restkit)[详细]
2023-03-24 13:53 分类:问答iOS Periodic Sync with Web Service
Background: I have already written an Android application that periodically sy开发者_JS百科ncs a database with a web service (using the abstract threaded sync adapter in the framework).[详细]
2023-03-24 00:05 分类:问答"NSMutableData data retain" on NSURLConnection - how calm this works?
On a lot of NSURLConnection examples I see the following lines: NSURLConnection *theConnection = [[NSURLConnection alloc]initWithRequest:theRequest delegate:self];[详细]
2023-03-23 09:25 分类:问答