Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
このコードのkvcキー/キーパスを知っている人は誰でも
[myArray objectAtIndex:i].property
うーん、あなたが行くことができる最も近いものはおそらく:
[[myArray valueForKey:@"property"] objectAtIndex:i]
配列はそれ自体にKVCを実装しないため、要素にキーを適用して結果の配列を返すようにKVCを再定義します。