チュートリアルに従って、Swift 2.0 でバックグラウンド フェッチを使用する際に問題が発生しました -> https://www.raywenderlich.com/92428/background-modes-ios-swift-tutorial3。次のエラーが表示されます: application:performFetchWithCompletionHandler: が、完了ハンドラーが呼び出されませんでした。
基本的に私は自分のアクションを実行する関数(firebaseでデータを呼び出す)を持っていて、それをバックグラウンドで実行したいです。
ここに私のアプリデリゲートコードがあります
func application(application: UIApplication, didFinishLaunchingWithOptions launchOptions: [NSObject: AnyObject]?) -> Bool {
UIApplication.sharedApplication().setMinimumBackgroundFetchInterval(
UIApplicationBackgroundFetchIntervalMinimum)
}
func application(application: UIApplication, performFetchWithCompletionHandler completionHandler: (UIBackgroundFetchResult) -> Void) {
if let tabBarController = window?.rootViewController as? UITabBarController,
viewControllers = tabBarController.viewControllers! as [UIViewController]!
{
for viewController in viewControllers {
if let a1 = viewController as? HorariosViewController {
completionHandler(.NewData)
a1.interface()
}
}
}
}
インターフェイス関数でfirebaseからデータを取得する方法は次のとおりです。
func interface() {
self.numeroDasOrações = []
self.adhan = []
if let snapshots = snapshot.children.allObjects as? [FDataSnapshot] {
for snap in snapshots {
if let postDictionary = snap.value as? Dictionary<String, AnyObject> {
let key = snap.key
let hSalat = Horarios(key: key, dictionary: postDictionary)
let hAdhan = Horarios(key: key, dictionary: postDictionary)
self.numeroDasOrações.append(hSalat)
self.adhan.append(hAdhan)
}
}
}
})
}
Xcode エラー:
警告: アプリケーション デリゲートは -application:performFetchWithCompletionHandler: への呼び出しを受け取りましたが、完了ハンドラーは呼び出されませんでした。
前もって感謝します。