我在AppDelegate中添加了
@implementation NSURLRequest (DataController)
+ (BOOL) allowsAnyHTTPSCertificateForHost:(NSString *) host{
return YES;
}
@end
在plist我已经包括:
<key>NSAppTransportSecurity</key>
<dict>
<key>NSAllowsArbitraryLoadsInWebContent</key>
<true/>
<key>NSAllowsArbitraryLoads</key>
<true/>
</dict>
我向非安全API发出请求
有人也有同样的问题吗?