I have an Objective-C project whose .ipa was tested with this tool online: https://www.immuniweb.com/mobile
It reports that my app has a high risk security issue, pointing to the canAuthenticateAgainstProtectionSpace
in the NSURLConnectionDelegate
protocol.
This method has been deprecated by iOS after 8.0 version. My app is not using it directly anywhere and I suppose this is not used by apple also even indirectly, since it is deprecated.
I tried a sample ipa (new project with nothing in it) with Objective-C
project and the same issue came for that as well. But it did not come for a sample ipa which supported Swift
. Even if this is just a warning, is there a way to fix other than just supporting Swift language only?