NSPredicateEditorRowTemplate views not filled with predicate

153 Views Asked by At

I have an NSPredicateEditor for which I'm setting up custom template row views.

The templates generate the correct predicate, but when I set the editor's objectValue to display the predicate, the views are not filling. The templates' matchForPredicate functions are working correctly, and the correct template is getting the setPredicate message sent by the editor after I've set the editor's objectValue, but nothing further is happening. Right now, the templates' setPredicate function simply calls super, but I've not seen anything out there that I should do anything differently.

Any ideas would be appreciated.

1

There are 1 best solutions below

0
On

This was a retain problem; once that was fixed, everything worked as expected.