Add encoding / decoding for NSPredicateEditor for non-keyed archiving

This commit is contained in:
Gregory John Casamento 2020-08-03 05:51:27 -04:00
parent 281da47d7f
commit 3030efa9f7

View file

@ -57,6 +57,7 @@
}
else
{
[aCoder encodeObject: _rowTemplates];
}
}
@ -76,6 +77,9 @@
}
else
{
NSArray *rowTemplates = [aDecoder decodeObject];
[self setRowTemplates: rowTemplates];
}
return self;