Working on an app that does background uploads, using NSURLSession
backgroundSessionConfigurationWithIdentifier
And getting the
handleEventsForBackgroundURLSession
call back in app delegate properly when the app is not in the foreground. My question is : Should I expect that to happen if the app is in the foreground ( ie : runnig)? The reason is based on that call I display a message to the user that uploads are done.
or should I have my own logic that once all tasks are finished and upload was successful?