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

enumerateResultsWithOptions:usingBlock:

Enumerates the current set of results using the given options and block. 与えられたオプションとブロックを使って現在の結果の集合を列挙します。

Declaration 宣言

- (void)enumerateResultsWithOptions:(NSEnumerationOptions)opts 
                         usingBlock:(void (^)(id result, NSUInteger idx, BOOL *stop))block;

Parameters パラメータ

opts

Options for the enumeration. For a complete list of options, see NSEnumerationOptions. 列挙に対するオプション。オプションの完全なリストとして、NSEnumerationOptionsを見てください。

block

The block to execute for each current result. 現在の結果それぞれに対して実行するブロック。

Discussion 議論

This method disables the query at the start of the iteration and reenables it upon completion. このメソッドは、反復の始まりで照会を作動しないようにします、そして完了に関してそれを再度可能にします。

See Also 参照

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