我在采用NSSecureCoding时遇到了麻烦。我对包含我的自定义类的对象的数组进行编码,该数组正确采用NSSecureCoding
。当我解码它并传递类NSArray
(这是我编码的对象的类)时,它将引发异常。但是,当对字符串数组进行完全相同的事情时,它可以正常工作。我看不到我的类和NSString有什么区别。
#import <Foundation/Foundation.h>
@interface Foo : NSObject <NSSecureCoding>
@end
@implementation Foo
- (id)initWithCoder:(NSCoder *)aDecoder {
return [super init];
}
- (void)encodeWithCoder:(NSCoder *)aCoder {
}
+ (BOOL)supportsSecureCoding {
return YES;
}
@end
int main() {
@autoreleasepool {
NSMutableData* data = [[NSMutableData alloc] init];
NSKeyedArchiver* archiver = [[NSKeyedArchiver alloc] initForWritingWithMutableData:data];
[archiver encodeObject:@[[Foo new]] forKey:@"foo"];
[archiver encodeObject:@[@"bar"] forKey:@"bar"];
[archiver finishEncoding];
NSKeyedUnarchiver* unarchiver = [[NSKeyedUnarchiver alloc] initForReadingWithData:data];
unarchiver.requiresSecureCoding = YES;
// throws exception: 'value for key 'NS.objects' was of unexpected class 'Foo'. Allowed classes are '{( NSArray )}'.'
[unarchiver decodeObjectOfClass:[NSArray class] forKey:@"foo"];
// but this line works fine:
[unarchiver decodeObjectOfClass:[NSArray class] forKey:@"bar"];
[unarchiver finishDecoding];
}
return 0;
}
您可能已经解决了这个问题,但是我刚刚找到了解决方案,并认为我会把它留给其他找到它的人在这里。
我的解决方法是使用decodeObjectOfClasses:forKey:
迅速:
if let data = defaults.objectForKey(FinderSyncKey) as? NSData
let unArchiver = NSKeyedUnarchiver(forReadingWithData: data)
unArchiver.setRequiresSecureCoding(true)
//This line is most likely not needed, I was decoding the same object across modules
unArchiver.setClass(CustomClass.classForCoder(), forClassName: "parentModule.CustomClass")
let allowedClasses = NSSet(objects: NSArray.classForCoder(),CustomClass.classForCoder())
if let unarchived = unArchiver.decodeObjectOfClasses(allowedClasses, forKey:NSKeyedArchiveRootObjectKey) as? [CustomClass]{
return unarchived
}
}
在objective-C中,类似[unArchiver decodeObjectOfClasses:allowedClasses forKey:NSKeyedArchiveRootObjectKey]
将解码对象更改为解码对象对我来说解决了上述异常。
在Swift 5中,我真的为此苦了一个小时。
我的情况是我有一组自定义解决方案对象:
var resultsSet = Set<Solution>()
符合安全编码:
static var supportsSecureCoding: Bool{ get{ return true } }
由于安全编码,它们的容器对象将它们编码为NSSet:
aCoder.encode(resultsSet as NSSet, forKey: "resultsSet")
但是在解码过程中我总是遇到编译器错误:
if let decodedResultsSet = aDecoder.decodeObject(of: NSSet.self, forKey: "resultsSet"){
resultsSet = decodedResultsSet as! Set<Solution>
}
错误:
2020-02-11 22:35:06.555015 + 1300发生异常,恢复键'NS.objects'的状态值为意外类'App.Solution'。允许的类别为'{(NSSet)}'。2020-02-11 22:35:06.564758 + 1300 ***由于未捕获的异常'NSInvalidUnarchiveOperationException'而终止应用程序,原因:'键'NS.objects'的值属于意外类'App.Solution'。允许的类别为'{(NSSet)}'。'
如果我将decodeObject(ofClass:更改为解决方案:
if let decodedResultsSet = aDecoder.decodeObject(of: Solution.self, forKey: "resultsSet"){
resultsSet = decodedResultsSet as! Set<Solution>
}
我收到错误:
2020-02-11 22:33:46.924580 + 1300发生异常,恢复键'resultsSet'的状态值为意外类'NSSet'。允许的类别为'{(解决方案)}'。2020-02-11 22:33:46.933812 + 1300 ***由于未捕获的异常'NSInvalidUnarchiveOperationException'而终止应用程序,原因:'键'resultsSet'的值属于意外类'NSSet'。允许的类别为'{(解决方案)}'。'
答案,现在很明显,但是我可以在任何地方找到它,以实现允许的对象列表是一个数组,并且它需要NSSet和自定义对象:Solution。
if let decodedResultsSet = aDecoder.decodeObject(of: [NSSet.self, Solution.self], forKey: "resultsSet"){
resultsSet = decodedResultsSet as! Set<Solution>
}
我希望这对某人有帮助。