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.
我有NSMutableArray10,000 个对象,每个对象都有名称、详细信息等。我想创建一个NSArray仅包含所有对象名称的内容。
NSMutableArray
NSArray
使用 KVC
NSArray *names = [myArray valueForKey:@"name"];
检查NSArray的文档
valueForKey: 返回一个数组,其中包含调用 valueForKey 的结果:对数组的每个对象使用键。