是否可以在 iOS 中组合 KVC 集合运算符?就像是:
[someManagedCollection valueForKeyPath:@"@distinctUnionOfObjects.@count.objects"];
现在,我正在这样做:
[[someManagedCollection valueForKeyPath:@"distinctUnionOfObjects.objects"] count];
但我想知道组合运算符是否会带来更好的性能。
是否可以在 iOS 中组合 KVC 集合运算符?就像是:
[someManagedCollection valueForKeyPath:@"@distinctUnionOfObjects.@count.objects"];
现在,我正在这样做:
[[someManagedCollection valueForKeyPath:@"distinctUnionOfObjects.objects"] count];
但我想知道组合运算符是否会带来更好的性能。