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

start()

Attempts to start the query. 照会を開始しようと試みます。

Declaration 宣言

func start() -> Bool

Return Value 戻り値

true when successful; otherwise, false. 成功する場合はtrue;そうでなければ、false

A query may fail to start if it does not specify a predicate, or if the query has already been started. それがpredicateを指定しないならば、または照会が既に開始されるならば、照会は開始するのを失敗するでしょう。

Discussion 議論

A query can’t be started if the receiver is already running a query or no predicate has been specified. 照会は開始されることができません、もしレシーバが既に照会を実行している、または述部が指定されているならば。

This method must be called from the receiver’s operationQueue or on the main thread. For example: このメソッドは、レシーバのもつoperationQueueからまたはメインスレッド上で呼び出されなければなりません。例えば:


let query: NSMetadataQuery = // Initialize and set up a query
    query.operationQueue?.addOperationWithBlock {
        query.startQuery()
}

See Also 参照

Running Queries 照会を実行する