gpt4 book ai didi

objective-c - 如何在使用并发时不让你的应用程序在退出时崩溃

转载 作者:可可西里 更新时间:2023-11-01 02:21:31 26 4
gpt4 key购买 nike

我正在使用 NSOperationQueueNSOperation 的子类对于我的应用程序中生成大量数据的部分,因此计算量很大。

当应用被用户关闭时processingQueue.cancelAllOperations()叫做。也在我的NSOperation我重写的子类 cancel()让它向执行实际繁重工作的类转发取消请求...

override func cancel() {
AppDelegate.instance.cancelDataGeneration()
super.cancel()
}

但这还不够。当我在数据生成过程中关闭应用程序时,它会在 Xcode 中崩溃。

我该怎么做才能防止崩溃(这可能会导致数据丢失)?让应用程序等待关闭直到所有并发操作都被取消是否可以,这是如何完成的(如果可能的话)?或者通常使用什么其他方法来解决这个问题?


更新:

经过更多调查,我发现 cancel()在我的 NSOperation子类从未被调用,即使在调用 processingQueue.cancelAllOperations() 之后也是如此在 applicationShouldTerminate .所以我添加了一个方法来手动调用取消:

func cancelDataGeneration() {
if let op = AppDelegate.instance._operation {
op.cancel();
}
}

我从内部调用它 applicationShouldTerminate (因为 applicationShouldTerminateapplicationWillTerminate 更早被调用。有趣的是,因为我的 AppDelegate 是单例,所以我必须使用 AppDelegate.instance._operation 。如果我只检查 _operation,当从 nil 调用时,结果是 applicationShouldTerminate . 知道为什么会这样会很有趣。

在任何情况下,取消现在都可以正常工作:当应用程序退出时,它会取消数据生成类并退出而不会崩溃......无论如何。但我仍然想知道为什么我的 NSOperation子类' cancel()当我使用 processingQueue.cancelAllOperations() 时没有被调用!

最佳答案

来自 Apple's documentation .

Canceling the operations does not automatically remove them from the queue or stop those that are currently executing. For operations that are queued and waiting execution, the queue must still attempt to execute the operation before recognizing that it is canceled and moving it to the finished state.

我会阻塞 App 的主线程,直到 NSOperationQueue 完成它的所有工作。

  • 我会先调用 [NSOperationQueue cancelAllOperations]
  • 然后在“应用程序将终止”方法中调用 [NSOperationQueue waitUntilAllOperationsAreFinished] .这将确保当前正在执行的 block (所有其他排队的任务将被取消)将在应用程序退出之前完成。

    现在,如果您不习惯主线程阻塞直到当前正在执行的 block 完成,那么您需要检查一个标志(或者可以设置一个NSApplicationDelegate在那个类上)如果应用程序仍然处于事件状态以便继续,它会发出信号。如果要终止应用程序,则 fall out block 自愿,这是最干净的方法。

    大致如下所示。

    void ^(aBlock)(void) = ^void(void)
    {
    for(NSUInteger i = 0;i < 1000; i++)
    {
    // heavy processing code. Taking several iterations each second
    // At the start of each iteration, check for a flag, to see if to quit
    if(_applicationIsShuttingDown) break;

    // perform block operation
    }
    };

    你的类是一个 NSApplicationDelegate 并且实现了

    -applicationWillTerminate:(NSNotification *)aNotification
    {
    _applicationIsShuttingDown = YES;
    }
  • 关于objective-c - 如何在使用并发时不让你的应用程序在退出时崩溃,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30657740/

    26 4 0
    Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
    广告合作:1813099741@qq.com 6ren.com