After new cutting-edge and state-of-the art Apple Xcode and iOS update and 3-hours to Swift 2.0 migrating, i stuck at the following issue. Here is my .plist code :
<key>LSApplicationQueriesSchemes</key>
<array>
<string>okauth</string>
<string>fbauth</string>
<string>vkauthorize</string>
</array>
<key>NSAppTransportSecurity</key>
<dict>
<key>NSAllowsArbitraryLoads</key>
<true/>
</dict>
Well, LSApplicationQueriesSchemes enables handling canOpenURL: procedure and NSAppTransportSecurity allows calling non-encrypted HTTP URL's. As you can see, my plist syntax equals this answer
Unfortunately, non of these settings work - i still cannot connect my server via HTTP and open other apps with custom URL schemes. Did anyone face these problems? Thanks in advance!