Hello all ,
To run any API in ios 9 ,a key should be added in info.plist in supporting files folder in any project.
First select info.plist and open as source code and add this code starting of  ...
<key>NSAppTransportSecurity</key>
    <dict>
        <key>NSAllowsArbitraryLoads</key>
        <true/>
    </dict>
and run your project . Now it will run without any error.
                       
                    
0 Comment(s)