I downloaded Xcode 7 on my mac but it seems the iOS 9 simulator does not have internet connection, I tried "Reset Content and Settings" and I restarted the simulator and Xcode but it doesn't seem to work,
Any solutions ? Thank you
I downloaded Xcode 7 on my mac but it seems the iOS 9 simulator does not have internet connection, I tried "Reset Content and Settings" and I restarted the simulator and Xcode but it doesn't seem to work,
Any solutions ? Thank you
try adding this to your info.plist file
heres a link to the Apple Dev forum on the issue: https://forums.developer.apple.com/thread/3544
Have you checked your debugger?
Are you getting Transport security has blocked a cleartext HTTP (http://)
If so look at your info.plist and set your NSAllowsArbitraryLoads to YES. If you don't have they key add this to your plist file.
<key>NSAppTransportSecurity</key>
<dict>
<key>NSAllowsArbitraryLoads</key>
<true/>
</dict>