Discussion:
Recommended way to save NSPredicates in Core Data store?
Ken Thomases
2018-08-16 00:29:05 UTC
Permalink
I'm building an interface that contains an NSPredicateEditor (think iTunes smart playlists), and I want to save the predicate in a Core Data store. What is the recommended way to do this? Serialize the NSPredicate object and save it as a blob? Break apart the predicate into one or more NSExpressions (left hand value, operator, right hand value) and reconstruct the predicate? I can think of several possibilities, but am wondering what is the path of least resistance (and, I suppose, most binding-friendly!).
Serializing the predicate (using NSKeyedArchiver) seems obviously the right way to go. Any other approach is just reinventing serializing it in a worse way.

You can create a custom value transformer (subclass of NSValueTransformer) to automatically archive and unarchive. Use that on your binding.

Regards,
Ken

_______________________________________________

Cocoa-dev mailing list (Cocoa-***@lists.apple.com)

Please do not post admin requests or moderator comments to the list.
Contact the moderators at cocoa-dev-admins(at)lists.apple.com

Help/Unsubscribe/Update your Subscription:
https://lists.apple.com/mailman/options/cocoa-dev/gegs%40ml-in.narkive.net

This email sent to ***@ml-in.narkive.net

Loading...