NSURLConnection inherent memory leak?
问题 In the example in the Xcode Documentation : URL Loading System Programming Guide : Using NSURLConnection, they alloc an NSURLConnection ( theConnection ) and then release it in the callbacks: -connection:didFailWithError: & -connectionDidFinishLoading: . But, won't theConnection leak (i.e. never get released) if the delegate is released before either of the callback methods get called? 回答1: No, theConnection won't leak because, as the Xcode Documentation for -[NSURLConnection initWithRequest