Reputation: 2550
Just wondering why this protocol reference doesn't include information on methods like "didReceiveData", "connectionDidFinishLoading" ? etc.
Are they deprecated or something? They don't come up in autocomplete anymore either.
Is there a new way you are supposed to receive and append the data?
Upvotes: 1
Views: 363
Reputation: 16337
They're in the protocol NSURLConnectionDataDelegate
. In earlier versions of iOS they were in an informal protocol, but since iOS 5 they were in the new NSURLConnectionDataDelegate
protocol.
Upvotes: 4