I have an iOS app that pulls user data from the server in applicationDidBecomeActive
.
If the user presses the home button, then returns to the app, either through the app icon or multitasking screen, the function works fine.
If the user locks the device in the mean time (either while still in the app or pressing home, then locking) the network request fails. I am using Alamofire. The response object is nil
and the result.data
is empty. There is no request logged on the server either. The failure happens instantly.
applicationDidBecomeActive
so surely at that point my app should have network access? – Vandusen