func indicesOfObjectsByEvaluating (withContainer : Any, count: UnsafeMutablePointer<Int>) -> UnsafeMutablePointer<Int>?
var objectsByEvaluatingSpecifier : Any?
Availability 有効性
Technology
func objectsByEvaluating(withContainers containers: Any) -> Any?
The actual object or objects specified by the receiver as evaluated in the context of its container object or objects (containers
).
レシーバによって指定される実際のオブジェクトまたは複数オブジェクト、それのコンテナオブジェクトまたは複数オブジェクト(containers
)の前後関係において評価される通りに。
Invokes indices
on self
to get an array of pointers to indices of elements in containers
that have values paired with the message receiver’s key. This method then uses key-value coding to obtain the object or objects associated with the key; it returns these objects or nil
if there are no matching values in containers. If there are multiple matching values, they are returned in an NSArray
; if matching values are nil
, NSNull
objects are substituted. If containers
is an NSArray
, the method recursively evaluates each element in the array and returns an NSArray
with evaluated objects (including NSNulls
) in their corresponding slots.
indices
をself
上で発動して、containers
の中の要素のインデックスへのポインタからなるある配列を取得してください、それらはメッセージレシーバのもつキー値と対にされる値を持ちます。このメソッドはそれからキー値コーディングを使って、キーと結び付けられるオブジェクトまたは複数オブジェクトを入手します;それはそれらオブジェクトを、またはnil
をもしコンテナの中に合致する値がないならば返します。複数の合致する値があるならば、それらはNSArray
において返されます;合致する値がnil
ならば、NSNull
オブジェクトが代わりに使われます。containers
がNSArray
ならば、メソッドは反復して配列の中の要素を評価します、そしてそれらの対応する位置に評価されたオブジェクト(NSNulls
を含んで)を持つNSArray
を返します。
func indicesOfObjectsByEvaluating (withContainer : Any, count: UnsafeMutablePointer<Int>) -> UnsafeMutablePointer<Int>?
var objectsByEvaluatingSpecifier : Any?