Add set/get method for requiresSecureCoding

This commit is contained in:
Gregory John Casamento 2020-05-13 02:29:53 -04:00
parent de0282fdac
commit 1a6a091fc4
2 changed files with 23 additions and 0 deletions

View file

@ -517,6 +517,16 @@ static NSDictionary *makeReference(unsigned ref)
}
}
- (BOOL) requiresSecureCoding
{
return _requiresSecureCoding;
}
- (void) setRequiresSecureCoding: (BOOL)flag
{
_requiresSecureCoding = flag;
}
- (BOOL) allowsKeyedCoding
{
return YES;