Type Method 型メソッド

dataDetectorWithTypes:error:

Creates and returns a new data detector instance. 新しいデータ検出子インスタンスを作成して返します。

Declaration 宣言

+ (NSDataDetector *)dataDetectorWithTypes:(NSTextCheckingTypes)checkingTypes 
                                    error:(NSError * _Nullable *)error;

Parameters パラメータ

checkingTypes

The checking types. The supported checking types are a subset of the types specified in NSTextCheckingType. Those constants can be combined using the C-bitwise OR operator. 検査する型それら。サポートされる検査する型それらは、NSTextCheckingTypeにおいて指定された型それらの下位集合です。それらの定数は、Cビット単位OR演算子を使って組み合わせられます。

error

An out parameter that if an error occurs during initialization contains the encountered error. あるアウトパラメータ、それは初期化の間にエラーから起きるならば、その出くわしたエラーを含みます。

Return Value 戻り値

Returns the newly initialized data detector. If an error was encountered returns nil, and error contains the error. 新しく初期化されたデータ検出子。エラーが出くわされたならばnilを返します、そしてerrorはそのエラーを含みます。

Discussion 議論

Currently, the supported data detectors checkingTypes are: NSTextCheckingTypeDate, NSTextCheckingTypeAddress, NSTextCheckingTypeLink, NSTextCheckingTypePhoneNumber, and NSTextCheckingTypeTransitInformation.

See Also 参照

Creating Data Detector Instances データ検出子インスタンスを作成する

Related Documentation 関連文書