gpt4 book ai didi

objective-c - 当使用多线程且仅使用 getter 时,您是否需要您的属性是原子的?

转载 作者:行者123 更新时间:2023-11-29 04:26:56 24 4
gpt4 key购买 nike

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

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

该属性将从多个线程访问(仅限 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。然后错误就会消失。但用户体验时滚动大大减少。

提前谢谢你。

努诺

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

最佳答案

关于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

关于objective-c - 当使用多线程且仅使用 getter 时,您是否需要您的属性是原子的?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12196698/

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