0

当使用多个线程并且仅使用 getter 时,您是否需要您的属性是 Atomic?

在对给定的ViewController执行 segue之前,我设置了一个实例变量

该属性将从多个线程(仅限 Getters)访问。这是我正在使用的代码。从我的tableView CellForRowAtIndexPath方法执行。

dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), ^{

    Day *aDay = [[[self days]  objectAtIndex:indexPath.section] objectAtIndex: indexPath.row];

    NSDictionary * data = [OperationsManager workTimeAndAmountForDay: aDay];

    NSString *workTime  = [data objectForKey:@"Work Time"];
    NSString *amount    = [data objectForKey:@"Amount"];

    NSString *textLabel = [NSString stringWithFormat:@"%d - H: %@ $: %@", [[aDay day_] integerValue], workTime, amount];

    dispatch_async(dispatch_get_main_queue(), ^{

        [[cell textLabel] setFont: [UIFont systemFontOfSize: 24.0]];
        [[cell textLabel] setText: textLabel];

        [cell setNeedsLayout];

    });

});

如果我只在一个线程上做这些。没有 GCD。没有错误。但是如果我在使用 GCD 时这样做,我通常会得到这样的结果,

2012-08-30 13:05:52.027 Work Clock[17236:707] *** Terminating app due to uncaught exception 'NSInternalInconsistencyException', reason: 'statement is still active'
*** First throw call stack:
(0x36a1188f 0x32e28259 0x352c93dd 0x352c8c87 0x3536c951 0x352d8b1f 0x352d0f73 0x35376dd5 0x352e2d1b 0x352e2247 0x352e1d5b 0x352e1c0b 0xc921f 0xc6fed 0x34c7f5cf 0x34c7f55f 0x34c4d495 0x34c42225 0x34c41763 0x34be5f37 0x369701fb 0x32083aa5 0x320836bd 0x32087843 0x3208757f 0x3207f4b9 0x369e5b1b 0x369e3d57 0x369e40b1 0x369674a5 0x3696736d 0x34b2e439 0x34c10cd5 0xbff55 0xbfef0)
terminate called throwing an exception2012-08-30 13:05:52.032 Work Clock[17236:1b03] *** Terminating app due to uncaught exception 'NSObjectInaccessibleException', reason: 'CoreData could not fulfill a fault for '0x2be320 <x-coredata://E4D2B2E1-B3D9-4358-810B-0FDE7A679A16/Day/p1>''
*** First throw call stack:
(0x36a1188f 0x32e28259 0x352e24f3 0x352e1d5b 0x352e1c0b 0xc95c9 0xc7395 0x37438c59 0x374447bb 0x32f59dfb 0x32f59cd0)
terminate called throwing an exception(lldb) 

我也有这个方法

 - (UIView *)tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section

它调用了一些相同的属性。有时错误发生在那里,但我只得到汇编代码。我目前无法复制该错误。

一注,

我的呼吁,

[OperationsManager workTimeAndAmountForDay: aDay];

是一个类方法,在我的 OperationsManager 类中定义。它没有任何类属性

+(NSDictionary *)workTimeAndAmountForDay:(Day *)aDay;

因此,如果我在VC使用多个线程时仅使用 getter,并且我的 Class 方法没有类属性。

为什么我不断收到这些错误?而且,它们真的很难复制!它有一些“随机”的感觉。

非常感谢任何帮助!

我可以停止使用 GCD。并且错误消失了。但是滚动时的用户体验会大大降低。

先感谢您。

努诺

此外,这些是我正在访问的核心数据对象。不知道有没有帮助?也只有一个上下文。但话又说回来。我只是在阅读对象。不保存或更改对象状态。

4

1 回答 1

1

关于atomic,请阅读 bbum 的帖子:

http://www.friday.com/bbum/2008/01/13/objectivce-c-atomic-properties-threading-andor-custom-settergetter/

当您查看崩溃时,它是CoreData相关的。看 ...

*** Terminating app due to uncaught exception
'NSObjectInaccessibleException', reason: 'CoreData
could not fulfill a fault for '0x2be320
<x-coredata://E4D2B2E1-B3D9-4358-810B-0FDE7A679A16/Day/p1>''

...您如何CoreData从多个线程访问对象、上下文...?你读过这篇文章吗:

http://developer.apple.com/library/ios/#documentation/cocoa/conceptual/coredata/Articles/cdConcurrency.html%23//apple_ref/doc/uid/TP40003385-SW1

于 2012-08-30T12:38:41.473 回答