Instance Method インスタンスメソッド

result(at:)

Returns the query result at a specific index. 指定されたインデックスでの照会結果を返します。

Declaration 宣言

func result(at idx: Int) -> Any

Parameters パラメータ

index

The index of the desired result in the query result array. 照会結果配列における望む結果のインデックス。

Return Value 戻り値

The query result at the position specified by index. By default, this method returns an NSMetadataItem object representing the requested result; however, the query’s delegate can substitute this object with an instance of a different class. indexによって指定される位置での照会結果。省略時には、このメソッドは要請された結果を表しているNSMetadataItemオブジェクトを返します; しかしながら、照会のもつ委任先はこのオブジェクトを異なるクラスのインスタンスで置き換えることができます。

Discussion 議論

For performance reasons, use this method when retrieving a specific result, rather than the array returned by results. 性能上の理由のために、このメソッドをある特定の結果を取ってくる場合は使ってください、resultsによって返される配列ではなく。

See Also 参照

Getting Query Results 照会結果を取得する

Related Documentation 関連文書