通过主队列上执行的块更新 NSProgressIndicator 时出现核心动画警告



我有以下方案将核心数据实体导出为 JSON 并在执行此操作时显示进度条。

有时,在导出完成后,带有进度条的工作表被关闭后,我会收到以下警告作为控制台消息:

核心动画:警告,删除了未提交的CATransaction的线程; 在环境中设置 CA_DEBUG_TRANSACTIONS=1 以记录回溯。

AppDelegate.m

//  AppDelegate.m
- (void)exportAsJSON:(id)sender;
{
    NSSavePanel *savePanel = [NSSavePanel savePanel];
    [savePanel beginSheetModalForWindow:[self window] completionHandler:^(NSInteger result) {
        WMJSONExportOperation *operation = nil;
        if (result == NSFileHandlingPanelOKButton)
        {
            [_progressIndicator setDoubleValue:0];
            operation = [[WMJSONExportOperation alloc] init];
            // setProgressCallbackBlock
            [operation setProgressCallbackBlock: ^(double progress) {
                [[NSOperationQueue mainQueue] addOperationWithBlock:^
                 {
                     [_progressIndicator setDoubleValue: progress];
                 }];
            }];
            // setExportCompletionBlock
            [operation setExportCompletionBlock:^(NSData *data, NSError *error) {
                // Insert code here to save data to disk
                [_window endSheet:_exportProgressSheet];
            }];
            [_window beginSheet:_exportProgressSheet completionHandler:^(NSInteger result) {
                NSLog(@"ExportProgressSheet completionHandler executed");
            }];
            NSOperationQueue *queue;
            queue = [[NSOperationQueue alloc] init];
            [queue addOperation:operation];
        }
    }];
}

WMJSONExportOperation.m,NSOperation的一个子类:

- (void)main;
{
    NSError *error = nil;
    NSData *data = nil;
    // just for illustrating the problem:
    for (int i=1; i<=10; i++) {
        sleep(1);
        [self progressCallbackBlock](i * 10);
    }
    [self exportCompletionBlock](data, error);
}
@end

所以第一个问题是:这只是一个警告,我应该关心吗?

第二个问题是,如何避免警告。SO上有一些问题描述了类似的问题,但建议的解决方案通常是仅从主队列操作NSProgressIndicator。这不正是我正在用这段代码做的事情吗:

    // setProgressCallbackBlock
    [operation setProgressCallbackBlock: ^(double progress) {
        [[NSOperationQueue mainQueue] addOperationWithBlock:^
         {
             [_progressIndicator setDoubleValue: progress];
         }];
    }];

通过设置 CA_DEBUG_TRANSACTIONS 环境变量进一步调查消息后,我发现问题不在于发送到NSProgressIndicator的消息,而是工作表的关闭,我确实从主队列以外的另一个队列触发。

所以这个变化解决了我的问题:

[_window endSheet:_exportProgressSheet];

成为:

[[NSOperationQueue mainQueue] addOperationWithBlock:^
   {
      [_window endSheet:_exportProgressSheet];
   }];

相关内容

  • 没有找到相关文章

最新更新