I have two targets in my app , app was working fine till iOS 9 updates.
All of a sudden image loading began failing with error
Error Domain=NSCocoaErrorDomain Code=256 "The file “linkimagehandler.ashx” couldn’t be opened." UserInfo={NSURL=http:la ..blw…RiS823e11rnf6dWjLasnjmiTYQpdDP+ZTekhIWBYx1PQfIUSDVJMT4dxE6VZ7YybIDRav0jKRLFa}
On searching I came to know about new network access security in iOS 9.
I got the clue of adding following in both the plist files for bypassing :
<key>NSAppTransportSecurity</key>
<dict>
<key>NSAllowsArbitraryLoads</key>
<true/>
</dict>
This solved my problem for target which i have added before few months. But i still face the same issue in the target which was cerated along with project around 10 months ago.
I am missing anything here.
Please guide .
Thank you !