0

Can you use a CPPredicate to check native javascript objects in cappuccino? I am trying to filter a native javascript array that has native javascript objects in it.

zachzurn
  • 2,161
  • 14
  • 26

1 Answers1

1

It's not likely to work. Objective-J objects have a few more features than JS object which I'm sure the predicate advantage of.

You can easily convert JS objects to CPDictionaries and back again though.

Me1000
  • 1,760
  • 1
  • 12
  • 14
  • Thanks. I ended up using a cappuccino object that holds a raw JS object and implements getKeyForPath which is now working. The way you suggested is the correct answer as well. – zachzurn Nov 30 '11 at 23:24