Re: Help with NSURLConnection memory fault
Re: Help with NSURLConnection memory fault
- Subject: Re: Help with NSURLConnection memory fault
- From: Jens Alfke <email@hidden>
- Date: Wed, 14 Oct 2009 16:24:05 -0700
It looks as though your object (the delegate) got dealloced too early,
before the NSURLConnection finished loading. This shouldn't be
possible, since the connection object retains the delegate, but you
may have too many release calls to it someplace.
What I would do next is set a breakpoint in your class's dealloc
method, and also in its -connectionDidFinishLoading: and -
connection:didFailWithError:, and see which gets called first.
—Jens_______________________________________________
Cocoa-dev mailing list (email@hidden)
Please do not post admin requests or moderator comments to the list.
Contact the moderators at cocoa-dev-admins(at)lists.apple.com
Help/Unsubscribe/Update your Subscription:
This email sent to email@hidden