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.
配列内のすべてのオブジェクトの特定のプロパティを抽出する (ループ以外の) 方法はありますか。だから、人々の配列でそこに言ってください。すべての名前を配列に抽出したいと考えています。
Key-Value コーディングは、次のことに役立ちます。
NSArray *result = [people valueForKey:@"firstname"];
私は私の質問に対する答えを得ました。これが、迅速に同じことを達成する方法です。
let arraytWithProperties = arrayWithObjects.map{ $0.propertyName }