如果一個應用程序依賴於後臺獲取和需要做一些處理,如果獲取的數據不是空的,它是有意義的事:在後臺獲取期間使用背景nsurlsession和後臺任務是否合理?
1)取得與背景NSURLSession(使用backgroundSessionConfigurationWithIdentifier)數據
2 )在後臺任務中處理數據(使用beginBackgroundTask)
由於系統提供了30秒來完成後臺提取,因此似乎不需要#1或#2。文檔(https://developer.apple.com/library/content/documentation/iPhone/Conceptual/iPhoneOSProgrammingGuide/BackgroundExecution/BackgroundExecution.html)沒有明確說明這些技術是否可以合併,所以我只是尋求確認。