gpt4 book ai didi

ios - NSManaged 对象 initWithCoder 错误

转载 作者:可可西里 更新时间:2023-11-01 04:58:41 28 4
gpt4 key购买 nike

我有一个讨厌的错误,如果能给我指明解决方案的大体方向,我将不胜感激。有时,我会收到以下异常,该异常与在我的核心数据模型中的 3 个不同的 NSManagedObject 子类上调用 initWithCoder 有关。如果我从我的设备中删除应用程序并重新加载它,或者在模拟器上重置内容,异常就会消失。在我的代码中,我没有在 NSManagedObject 子类上显式调用 initWithCoder。

该错误似乎是在编辑我的源代码的随机部分后随机出现的。关于从哪里开始的任何想法?

2014-01-11 15:59:22.078 Flip Evaluator and Manager[354:a0b] -[SellingCosts initWithCoder:]: unrecognized selector sent to instance 0xc2cec80
2014-01-11 15:59:22.079 Flip Evaluator and Manager[354:a0b] CoreData: error: exception during fetchRowForObjectID: -[SellingCosts initWithCoder:]: unrecognized selector sent to instance 0xc2cec80 with userInfo of (null)
2014-01-11 15:59:22.081 Flip Evaluator and Manager[354:a0b] *** Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '-[SellingCosts initWithCoder:]: unrecognized selector sent to instance 0xc2cec80'
*** First throw call stack:
(
0 CoreFoundation 0x01e9a5e4 __exceptionPreprocess + 180
1 libobjc.A.dylib 0x01c1d8b6 objc_exception_throw + 44
2 CoreFoundation 0x01f37903 -[NSObject(NSObject) doesNotRecognizeSelector:] + 275
3 CoreFoundation 0x01e8a90b ___forwarding___ + 1019
4 CoreFoundation 0x01e8a4ee _CF_forwarding_prep_0 + 14
5 Foundation 0x01830b2a _decodeObjectBinary + 3498
6 Foundation 0x0182fc15 _decodeObject + 340
7 Foundation 0x0182fab9 -[NSKeyedUnarchiver decodeObjectForKey:] + 181
8 Foundation 0x018a168d +[NSKeyedUnarchiver unarchiveObjectWithData:] + 106
9 Foundation 0x018202e5 -[_NSKeyedUnarchiveFromDataTransformer transformedValue:] + 47
10 CoreData 0x0064bd09 _prepareResultsFromResultSet + 4105
11 CoreData 0x00649583 newFetchedRowsForFetchPlan_MT + 1795
12 CoreData 0x0063448e -[NSSQLCore newRowsForFetchPlan:] + 526
13 CoreData 0x0065302e -[NSSQLCore fetchRowForObjectID:] + 1198
14 CoreData 0x00650798 -[NSSQLCore newValuesForObjectWithID:withContext:error:] + 296
15 CoreData 0x00650667 -[NSPersistentStoreCoordinator(_NSInternalMethods) newValuesForObjectWithID:withContext:error:] + 71
16 CoreData 0x0064fa3b _PFFaultHandlerLookupRow + 411
17 CoreData 0x0064f897 -[NSFaultHandler fulfillFault:withContext:forIndex:] + 39
18 CoreData 0x0064f473 _PF_FulfillDeferredFault + 259
19 CoreData 0x0064f2c6 _sharedIMPL_pvfk_core + 70
20 CoreData 0x00653cd5 -[NSManagedObject(_PFDynamicAccessorsAndPropertySupport) _genericValueForKey:withIndex:flags:] + 85
21 CoreData 0x0068d781 _PF_Handler_Public_GetProperty + 161
22 CoreData 0x0068d685 -[NSManagedObject valueForKey:] + 149
23 Flip Evaluator and Manager 0x00030c4c -[OzCalculator sumTheValuesInSet:withAttributeKeyForValue:] + 428
24 Flip Evaluator and Manager 0x0002f7d5 -[OzCalculator sumMoreCostsAndUpdateDataModelFor:] + 165
25 Flip Evaluator and Manager 0x0002edc1 -[OzCalculator performAllCalculationsOnProperty:] + 817
26 Flip Evaluator and Manager 0x00002d37 -[OzPropertyConverter createAManagedPropertyFromAnEvaluatedProperty:] + 1175
27 Flip Evaluator and Manager 0x00041233 -[OzHaveYouPurchasedThisProperty goForwardToNextView] + 307
28 libobjc.A.dylib 0x01c2f874 -[NSObject performSelector:withObject:withObject:] + 77
29 UIKit 0x0098d0c2 -[UIApplication sendAction:to:from:forEvent:] + 108
30 UIKit 0x0098d04e -[UIApplication sendAction:toTarget:fromSender:forEvent:] + 61
31 UIKit 0x00a850c1 -[UIControl sendAction:to:forEvent:] + 66
32 UIKit 0x00a85484 -[UIControl _sendActionsForEvents:withEvent:] + 577
33 UIKit 0x00a841fd -[UIControl touchesBegan:withEvent:] + 254
34 UIKit 0x009ca34b -[UIWindow _sendTouchesForEvent:] + 386
35 UIKit 0x009cb184 -[UIWindow sendEvent:] + 1232
36 UIKit 0x0099ee86 -[UIApplication sendEvent:] + 242
37 UIKit 0x0098918f _UIApplicationHandleEventQueue + 11421
38 CoreFoundation 0x01e2383f __CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE0_PERFORM_FUNCTION__ + 15
39 CoreFoundation 0x01e231cb __CFRunLoopDoSources0 + 235
40 CoreFoundation 0x01e4029e __CFRunLoopRun + 910
41 CoreFoundation 0x01e3fac3 CFRunLoopRunSpecific + 467
42 CoreFoundation 0x01e3f8db CFRunLoopRunInMode + 123
43 GraphicsServices 0x02c2a9e2 GSEventRunModal + 192
44 GraphicsServices 0x02c2a809 GSEventRun + 104
45 UIKit 0x0098bd3b UIApplicationMain + 1225
46 Flip Evaluator and Manager 0x0002e5dd main + 141
47 libdyld.dylib 0x030c1725 start + 0
)
libc++abi.dylib: terminating with uncaught exception of type NSException

代码:

//
// SellingCosts.h
// Flip Evaluator and Manager
//

#import <Foundation/Foundation.h>
#import <CoreData/CoreData.h>

@class Cost, Property, TotalCosts;

@interface SellingCosts : NSManagedObject

@property (nonatomic, strong) NSNumber * deedPrep;
@property (nonatomic, strong) NSNumber * realtyCommisionAmount;
@property (nonatomic, strong) NSNumber * realtyCommisionPercent;
@property (nonatomic, strong) NSNumber * totalCost;
@property (nonatomic, strong) NSSet *moreCosts;
@property (nonatomic, strong) Property *property;
@property (nonatomic, strong) TotalCosts *totalCosts;
@property (nonatomic, strong) NSNumber * transferTaxAmount;
@property (nonatomic, strong) NSNumber * transferTaxPercent;
@property (nonatomic, strong) NSNumber *totalIncompleteCost;
@property (nonatomic, strong) NSNumber *totalCompleteCost;

@end

这是在出错之前调用的方法:

-(NSInteger)sumTheValuesInSet:(NSMutableSet *)set withAttributeKeyForValue:(NSString *)attributeKey
{
NSInteger sumToReturn = 0;
for (id obj in set) {
sumToReturn = sumToReturn +[[obj valueForKey:attributeKey] integerValue];
}

return sumToReturn;
}

该方法通过 NSSet [sellingCosts valueForKey:@"moreCosts"] 中的 Cost 对象进行枚举。

这是Cost对象的模型//

//  Cost.h
// Flip Evaluator and Manager
//

#import <Foundation/Foundation.h>
#import <CoreData/CoreData.h>

@class BuyingCosts, HoldingCosts, SellingCosts, OtherCosts, TotalCosts;

@interface Cost : NSManagedObject

@property (nonatomic, strong) BuyingCosts *buyingCosts;
@property (nonatomic, strong) HoldingCosts *holdingCosts;
@property (nonatomic, strong) SellingCosts *sellingCosts;
@property (nonatomic, strong) OtherCosts *otherCosts;
@property (nonatomic, strong) NSString * name;
@property (nonatomic, strong) TotalCosts *incompleteCosts;
@property (nonatomic, strong) TotalCosts *completedCosts;
@property (nonatomic, strong) NSNumber *complete;
@property (nonatomic, strong) id costType;
@property (nonatomic, strong) NSNumber *amount;

@end

最佳答案

分享你的模型,乍一看这似乎是一个转换问题。

您还应该在 -sumTheValuesInSet:withAttributeKeyForValue: 中共享代码,因为这似乎是您代码中出现问题之前的最后一点。

关于ios - NSManaged 对象 initWithCoder 错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21067982/

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