标签: objective-c key-value-coding kvc
任何人都知道此代码的kva键/密钥路径
[myArray objectAtIndex:i].property
答案 0 :(得分:4)
嗯,你最接近的可能是:
[[myArray valueForKey:@"property"] objectAtIndex:i]
因为数组本身没有实现KVC,所以它们重新定义它以将键应用于元素并返回结果数组。