Anybody know the kvc key/key path fore this code
[myArray objectAtIndex:i].property
Hmm, the closest you can go is probably:
[[myArray valueForKey:@"property"] objectAtIndex:i]
because arrays do not implement KVC for themselves, they redefine it to apply the key to the elements and return an array of the results.