We are an online payments app which allows users to pay to different merchants through credit, debit cards or net banking. Since apple has introduced App Transport Security in IOS 9.0, we are facing issues while loading different bank urls in UIWebView.
ATS requires all bank sites to be TLS 1.2 compliant but most of the banks are still using SSL or TLS 1.0. Based on various stack overflow answers to bypass this either we have to explicitly allow that particular domain to be SSL or TLS 1.0 compliant or we can make use of NSAllowsArbitraryLoads to allows all the bank urls. Since we can't keep track of all the bank urls we want to use NSAllowsArbitraryLoads approach.
Does apple rejects the app which use NSAllowsArbitraryLoads?
Does enabling NSAllowsArbitraryLoads in IOS 9 disables TLS or SSL checking altogether or does it only removes TLS 1.2 enforcement.