var results: [Any]
An array containing the query’s results.
照会の持つ結果を含んでいる配列。
var resultCount : Int
The number of results returned by the query. (read-only)
照会によって返される結果の数。(読み出しのみ)
func result(at: Int) -> Any
Returns the query result at a specific index.
指定されたインデックスでの照会結果を返します。
func index(ofResult : Any) -> Int
Returns the index of a query result object in the receiver’s results array.
レシーバのもつ結果配列の中の照会結果オブジェクトのインデックスを返します。
var groupedResults : [NSMetadataQueryResultGroup]
An array containing hierarchical groups of query results. (read-only)
照会結果の階層化したグループを含んでいる配列。(読み出しのみ)
class NSMetadataQueryResultGroup
The
NSMetadataQueryResultGroup
class represents a collection of grouped attribute results returned by an NSMetadataQuery
object.
NSMetadataQueryResultGroup
クラスは、NSMetadataQuery
オブジェクトによって返されるグループ化された属性結果のコレクションを表します。
func enumerateResults (options: NSEnumerationOptions, using: (Any, Int, UnsafeMutablePointer<ObjCBool>) -> Void)
Enumerates the current set of results using the given options and block.
与えられたオプションとブロックを使って現在の結果の集合を列挙します。
var valueLists : [String : [NSMetadataQueryAttributeValueTuple]]
A dictionary containing the value lists generated by the query.
照会によって生成される値リストそれらを含んでいるある辞書。
class NSMetadataQueryAttributeValueTuple
The
NSMetadataQueryAttributeValueTuple
class represents attribute-value tuples, which are objects that contain the attribute name and value of a metadata attribute.
NSMetadataQueryAttributeValueTuple
クラスは「属性値」タプルを表します、それは、あるメタデータ属性の属性名と値を含んでいるオブジェクトです。
func value(ofAttribute : String, forResultAt : Int) -> Any?
Returns the value for the attribute name
attrName
at the index in the results specified by idx
.
属性名attrName
に対する、idx
によって指定される結果の中のインデックスでの値を返します。
func enableUpdates ()
Enables updates to the query results.
照会結果の更新を可能にします。
func disableUpdates ()
Disables updates to the query results.
照会結果の更新を不可能にします。
var operationQueue : OperationQueue?
The queue on which query result notifications are posted.
それの上に照会結果通知が投函されるところのキュー。