Skip to content

Instantly share code, notes, and snippets.

@dpfannenstiel
Created January 17, 2014 03:12
Show Gist options
  • Save dpfannenstiel/cedb73d85a478796d1c6 to your computer and use it in GitHub Desktop.
Save dpfannenstiel/cedb73d85a478796d1c6 to your computer and use it in GitHub Desktop.
NSURLSessionDelegate
#pragma mark - NSURLSessionDelegate
- (void)URLSession:(NSURLSession *)session didBecomeInvalidWithError:(NSError *)error {
}
- (void)URLSession:(NSURLSession *)session didReceiveChallenge:(NSURLAuthenticationChallenge *)challenge completionHandler:(void (^)(NSURLSessionAuthChallengeDisposition, NSURLCredential *))completionHandler {
}
- (void)URLSessionDidFinishEventsForBackgroundURLSession:(NSURLSession *)session {
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment