We’ve been having a hard time securing our app’s network connections with SSL using AFNetworking 2.5.0.
We use a self-signed certificate authority and implemented a
I tried all of these but nothing helped then I searched for this line
'NSLog(@"In order to validate a domain name for self signed certificates, you MUST use pinning.");'
and below this line I changed
'return NO;' to
'return YES;'
and it did the magic.
Thanks.