1

I have an app which uses 4 to 5 third party libraries and one of the library is deprecating the support less than TLS 1.2. So I just want to know, if I add NSArbitraryLoads flag, it will disable TLS1.2 version itself completely for all requests Or it will make TLS1.2 connection to the server which supports the TLS1.2.

dan
  • 9,695
  • 1
  • 42
  • 40
user1325792
  • 75
  • 1
  • 1
  • 3

1 Answers1

0

NSArbitraryLoads just allow insecure connection. It doesn't remove TLS requirement.

If you want to remove this requirement check here

Community
  • 1
  • 1
stefos
  • 1,235
  • 1
  • 10
  • 18