Использование iOS 13.3.1 Xcode 11.3.1 Swift 5
Код говорит об этом, компилирует, но не работает правильно. Когда я выполняю фоновую проверку своего приложения, я получаю сообщение об ошибке, которое гласит: «Сбой с отсутствием фоновой задачи с идентификатором 1 или, возможно, она уже завершена».
func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?) -> Bool {
// Override point for customization after application launch.
BGTaskScheduler.shared.register(forTaskWithIdentifier: "ch.blah.refresh", using: nil) { (task) in
self.handleAppRefresh(task: task as! BGAppRefreshTask)
}
return true
}
func applicationDidEnterBackground(_ application: UIApplication) {
scheduleAppRefresh()
}
var request: BGAppRefreshTaskRequest!
func scheduleAppRefresh() {
request = BGAppRefreshTaskRequest(identifier: "ch.blah.refresh")
request.earliestBeginDate = Date(timeIntervalSinceNow: 60)
do {
try BGTaskScheduler.shared.submit(request)
} catch {
print("Could not schedule app refresh: \(error)")
}
}
func handleAppRefresh(task: BGAppRefreshTask) {
scheduleAppRefresh()
let queue = OperationQueue()
queue.maxConcurrentOperationCount = 1
queue.addOperation {
for i in 1 ... 1000000 {
print("\(i)")
}
}
let lastOp = queue.operations.last
lastOp?.completionBlock = {
task.setTaskCompleted(success: !lastOp!.isCancelled)
}
task.expirationHandler = {
queue.cancelAllOperations()
}
}
Да, я добавил ключ в Info.plist
<key>BGTaskSchedulerPermittedIdentifiers</key>
<array>
<string>ch.blah.refresh</string>
</array>
Я получаю несколько сбоев из-за iOS 13. Чего мне не хватает?
Я попытался загрузить код Apple WWD C, чтобы посмотреть. Но, похоже, у него та же проблема.