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

startQuery

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

Declaration 宣言

- (BOOL)startQuery;

Return Value 戻り値

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

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からまたはメインスレッド上で呼び出されなければなりません。例えば:


NSMetadataQuery *query = // Initialize and set up a query
[query.operationQueue addOperationWithBlock:^{
    [query startQuery];
}];

See Also 参照

Running Queries 照会を実行する