Is it possible to combine KVC collection operators in iOS? Something like:
[someManagedCollection valueForKeyPath:@"@[email protected]"];
Right now, I'm doing it like this:
[[someManagedCollection valueForKeyPath:@"distinctUnionOfObjects.objects"] count];
but I'm wondering if combining operators would lead to better performance.
Sorry to be brief, but in my experience, "No." (And yes, I've tried.)