- isSubsetOfSet:
- intersectsSet:
- isEqualToSet:
- setValue:forKey:
setValue:forKey:
on each of the set’s members.
setValue:forKey:
を集合のもつメンバのそれぞれで発動します。
valueForKey:
on each of the receiving set's members.
ある集合を返します、valueForKey:
を受け手側の集合のもつメンバのそれぞれで発動する結果を含んでいます。
Availability 有効性
Technology
- (id)valueForKey:(NSString
*)key;
key
The name of one of the properties of the receiving set's members. 受け手側の集合のもつメンバそれらのプロパティの1つの名前。
A set containing the results of invoking value
(with the argument key
) on each of the receiving set's members.
value
を(引数key
とともに)受け手側の集合のもつメンバのそれぞれで発動する結果を含んでいるある集合。
The returned set might not have the same number of members as the receiving set. The returned set will not contain any elements corresponding to instances of value
returning nil
(note that this is in contrast with NSArray
’s implementation, which may put NSNull
values in the arrays it returns).
返される集合は、受け手側の集合と同じ数の要素を持たないかもしれません。返される集合は、nil
を返しているvalue
のインスタンスに対応しているどんな要素も含まないでしょう(これはNSArray
のもつ実装と対照的であることに注意してください、それはNSNull
値をそれが返す配列の中に置くかもしれません)。
- isSubsetOfSet:
- intersectsSet:
- isEqualToSet:
- setValue:forKey:
setValue:forKey:
on each of the set’s members.
setValue:forKey:
を集合のもつメンバのそれぞれで発動します。