i want to load my Url in web view that shows me error like as NSURLSession/NSURLConnection HTTP load failed (kCFStreamErrorDomainSSL, -9813)
Here i write my code like as
NSString *urlAddress = @"https://anyror.gujarat.gov.in/";
NSURL *url = [NSURL URLWithString:urlAddress];
NSURLRequest *requestObj = [NSURLRequest requestWithURL:url];
[self.revenueWeb loadRequest:requestObj];
I do googling for it and fine some solution like as add this code in info.plist
<key>NSAppTransportSecurity</key>
<dict>
<key>NSAllowsArbitraryLoads</key>
<true/>
then i added this code in my info.plist
but it is not working.