gpt4 book ai didi

objective-c - 设置核心数据对象的标量属性时的 EXC_BAD_ACCESS (IOS 5)

转载 作者:行者123 更新时间:2023-11-29 13:32:12 26 4
gpt4 key购买 nike

我在 IOS 5.1 模拟器中运行以下代码:

Table* sparkFront =
[NSEntityDescription insertNewObjectForEntityForName:@"Table"
inManagedObjectContext:_context];
NSLog(@"%@", sparkFront);
NSEntityDescription* entity = [NSEntityDescription entityForName:@"Table"
inManagedObjectContext:_context];
NSDictionary* dict = [entity propertiesByName];
for (NSObject* key in [dict allKeys])
{
NSLog(@"%@", key);
}
sparkFront.columnValuesAddress = 0x606;

此代码在最后一行因 EXC_BAD_ACCESS 而崩溃。 Table 对象是一个 Core Data 对象,实现如下:

@interface Table : NSManagedObject
@property (nonatomic) int32_t columnValuesAddress;
@end

我知道 Core Data 本身并不处理标量类型,但这是一个仅限 IOS 5+ 的应用程序,我的印象是取消/装箱是自动完成的。以上代码在崩溃前的输出表明我的上下文和实体是好的:

2012-07-20 22:17:52.714 otest[95147:7b03] <NSManagedObject: 0x9c87b20> (entity: Table; id: 0x9c86a80 <x-coredata:///Table/t2C0D90D5-E381-4BD0-B65D-8FC83C6D50DB2> ; data: {
columnValuesAddress = 0;
})
2012-07-20 22:17:52.716 otest[95147:7b03] columnValuesAddress

崩溃后,问题报告显示如下:

Application Specific Information:
objc_msgSend() selector name: isNSNumber__
Simulator libSystem was initialized out of order.


Thread 0 Crashed:
0 libobjc.A.dylib 0x00635098 objc_msgSend + 12
1 CoreData 0x05c2e833 _PFManagedObject_coerceValueForKeyWithDescription + 483
2 CoreData 0x05bfe3d1 _sharedIMPL_setvfk_core + 209
3 CoreData 0x05c16687 _svfk_0 + 39
4 ECMCalTests 0x0187f8f1 -[ECMCalTests testInsertRecords] + 849 (ECMCalTests.m:73)
5 CoreFoundation 0x003f74ed __invoking___ + 29
6 CoreFoundation 0x003f7407 -[NSInvocation invoke] + 167
7 SenTestingKit 0x201039c4 -[SenTestCase invokeTest] + 184
8 SenTestingKit 0x20103868 -[SenTestCase performTest:] + 183
9 SenTestingKit 0x201034a9 -[SenTest run] + 82
10 SenTestingKit 0x20106db2 -[SenTestSuite performTest:] + 106
11 SenTestingKit 0x201034a9 -[SenTest run] + 82
12 SenTestingKit 0x20106db2 -[SenTestSuite performTest:] + 106
13 SenTestingKit 0x201034a9 -[SenTest run] + 82
14 SenTestingKit 0x20105e97 +[SenTestProbe runTests:] + 174
15 CoreFoundation 0x00492d51 +[NSObject performSelector:withObject:] + 65
16 otest 0x0000231c 0x1000 + 4892
17 otest 0x000025be 0x1000 + 5566
18 otest 0x00002203 0x1000 + 4611
19 otest 0x00001f8d 0x1000 + 3981
20 otest 0x00001f31 0x1000 + 3889

我做错了什么?

更新:我根据核心数据教程为属性实现了 setter/getter。它仍然崩溃。它永远不会在 setter 中遇到断点,因此它甚至在调用 setter 之前就崩溃了。我是否遇到了 Apple 代码中的错误?

@interface Table : NSManagedObject
{
int32_t columnValuesAddress;
}
@property (nonatomic) int32_t columnValuesAddress;
@end

@implementation Table

- (int32_t)columnValuesAddress
{
[self willAccessValueForKey:@"columnValuesAddress"];
int32_t address = columnValuesAddress;
[self didAccessValueForKey:@"columnValuesAddress"];
return address;
}

- (void)setColumnValuesAddress:(int32_t)address
{
[self willChangeValueForKey:@"columnValuesAddress"];
columnValuesAddress = address;
[self didChangeValueForKey:@"columnValuesAddress"];
}

- (void)setNilValueForKey:(NSString *)key
{
if ([key isEqualToString:@"columnValuesAddress"])
{
self.columnValuesAddress = 0;
}
else
{
[super setNilValueForKey:key];
}
}

@end

最佳答案

在实体编辑器中,您需要设置您的类。它是在您使用文件模板创建核心数据类文件时为您设置的。我创建了一个没有模板的类文件,因此没有设置类,所以我收到了这些错误。如果它可以看到类并看到您将其指定为 assign,它只会自动装箱和取消装箱。

关于objective-c - 设置核心数据对象的标量属性时的 EXC_BAD_ACCESS (IOS 5),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11589808/

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