Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I saw similar questions here, but I couldn't find solution to my problem. I have a simple NSURLConnection in main thread (At least I didn't create any other threads), but my delegate methods aren't get called

[[[NSURLConnection alloc] initWithRequest:request delegate:self] autorelease];

and no methods called, e.g.

- (void)connection:(NSURLConnection *)connection didReceiveResponse:(NSURLResponse *)response
{
NSLog(@"didReceiveResponse");
}

self is also a delegate for NSXMLParser, but I think it should not be a problem, as I have this working in my other class in the same project. I checked everything 10 times already, but can't find any problem.

I've seen some hack to solve it here: http://www.depl0y.com/?p=345 but I don't like it, May be someone knows better solution? thanks

share|improve this question

5 Answers

up vote 14 down vote accepted

The only reason I know is a separate thread (that is already terminated when the delegate methods are called).

Try to NSLog(@"Is%@ main thread", ([NSThread isMainThread] ? @"" : @" NOT"));right before the url connection creation

share|improve this answer
I changed it to NSLog(@"Is main thread %@", ([NSThread isMainThread] ? @"Yes" : @" NOT")); and getting "Is main thread Yes" – Burjua Jul 23 '10 at 16:34
so should the answer be yes or no, I am having the same issue. none of the delegate methods are being called – zambono Aug 23 '11 at 15:30
@zambono, do you initiate the connection in the main thread (or manually managed background thread)? – Michael Kessler Aug 25 '11 at 6:31
it helped me thanks :) – Piyush Kashyap Jun 11 '12 at 12:24
what should i do if it NOT a main thread! i m not explicitly creating any thread!! my function which does NSURLConnection *connection = [[NSURLConnection alloc] initWithRequest:request delegate:self]; is getting called for each new request,first request is Main thread but "not" main thread from 2nd request onwards!!! – Yadnesh Jul 10 '12 at 5:01
show 2 more comments

Try running your connection on main thread:

NSURLConnection * connection = [[NSURLConnection alloc] initWithRequest:request
                                         delegate:self startImmediately:NO];

[connection scheduleInRunLoop:[NSRunLoop mainRunLoop] 
            forMode:NSDefaultRunLoopMode];
[connection start];
share|improve this answer

The autorelease is dangerous. The calls to the delegate are made after your function returns (asynchronously). Are you retaining it somewhere else?

share|improve this answer
problem is not in autorelease((, I made as Eugenio Depalo suggested – Burjua Jul 23 '10 at 16:12
The connection may and should be released right after its allocation and initiation. This is not the reason. – Michael Kessler Jul 23 '10 at 16:17
This is indeed a very common misstake. watch out for it. – Magnus Jan 11 '11 at 10:52

You have to release the NSURLConnection object in the - (void)connectionDidFinishLoading:(NSURLConnection *)connection callback as pointed out in the Apple documentation, not elsewhere:

- (void)connectionDidFinishLoading:(NSURLConnection *)connection
{
  // Do whatever you want here

  // Release the connection
  [connection release];
}

Don't release it with autorelease, as Lou Franco suggested.

If it is not the problem, then maybe you have to implement all the required methods in the delegate class:

- (void)connection:(NSURLConnection *)connection didFailWithError:(NSError *)error

- (void)connectionDidFinishLoading:(NSURLConnection *)connection

- (void)connection:(NSURLConnection *)connection didReceiveData:(NSData *)data

- (void)connection:(NSURLConnection *)connection didReceiveResponse:(NSURLResponse *)response

The delegate is retained by NSURLConnection so you don't have to worry about it.

share|improve this answer
He didn't suggest it)), but anyway, I removed autorelease, release it in connectionDidFinishLoading, but it doesn't help((( – Burjua Jul 23 '10 at 16:11
The connection may and should be released right after its allocation and initiation. This is not the reason. – Michael Kessler Jul 23 '10 at 16:17
Yes, I have all this 4 methods (( – Burjua Jul 23 '10 at 16:48

I think you may have missed NSURLConnectionDelegate in your class header file.

For example:

@interface yourClass : NSObject <NSURLConnectionDelegate>
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.