我对IOS开发很新,我想知道是否有可能忽略ssl验证" NSMutableURLRequest"类。如果是这样,请指导我。我通过覆盖
通过委托忽略了SLL验证psql -h myhost
我希望在没有Delegate的情况下忽略SLL验证。
我的代码段
- (BOOL)connection:(NSURLConnection *)connection canAuthenticateAgainstProtectionSpace:(NSURLProtectionSpace *)protectionSpace;
由于
Amith
答案 0 :(得分:3)
我认为之前已经回答了这个问题。您可以尝试在AppDelegate.m
@end
#if DEBUG
@implementation NSMutableURLRequest (NSURLRequestWithIgnoreSSL)
+ (BOOL)allowsAnyHTTPSCertificateForHost:(NSString *)host
{
return YES;
}
@end
#endif