Skip to content

Instantly share code, notes, and snippets.

@raimon49
raimon49 / AppDelegate.m
Created May 26, 2015 13:02
Ignoring certificate errors with NSURLConnection
@implementation NSURLRequest(OOA)
+ (BOOL)allowsAnyHTTPSCertificateForHost:(NSString *)host {
return YES;
}
@end