我在让后台提取工作时遇到问题。请参阅下面的代码。我在 info.plist 中添加了 fetch 作为后台模式。我使用 Debug -> Simulate background fetch 来模拟提取。控制台日志中没有任何输出。我在 swift 中找不到任何好的例子。有谁知道如何让这个工作?
func application(application: UIApplication!, performFetchWithCompletionHandler
completionHandler: ((UIBackgroundFetchResult) -> Void)!) {
println("Background fetch occured!");
completionHandler(UIBackgroundFetchResult.NewData)
}