var checkingTypes : NSTextCheckingTypes
+ dataDetectorWithTypes:error:
Availability 有効性
Technology
init(types checkingTypes: NSTextCheckingTypes
) throws
checkingTypes
The checking types. The supported checking types are a subset of the types NSText
. Those constants can be combined using the C-bitwise OR operator.
検査する型それら。サポートされる検査する型は、型NSText
の下位集合です。それらの定数は、Cビット単位OR演算子を使って組み合わせられます。
error
An out parameter that if an error occurs during initialization contains the encountered error. あるアウトパラメータ、それは初期化の間にエラーから起きるならば、その出くわしたエラーを含みます。
Returns the newly initialized data detector. If an error was encountered returns nil
, and error
contains the error.
新しく初期化されたデータ検出子。エラーが出くわされたならばnil
を返します、そしてerror
はそのエラーを含みます。
Currently, the supported data detectors checking
are: date
, address
, link
, NSText
, and NSText
.
Handling Errors in Swift: Swiftでのエラー処理:
In Swift, this API is imported as an initializer and is marked with the throws
keyword to indicate that it throws an error in cases of failure.
Swiftでは、このAPIはイニシャライザとしてインポートされてthrows
キーワードで印されることで、それが様々な失敗においてエラーをスローすることを指し示します。
You call this method in a try
expression and handle any errors in the catch
clauses of a do
statement, as described in Error Handling in The Swift Programming Language and About Imported Cocoa Error Parameters.
あなたはこのメソッドをtry
式の中で呼び出して、あらゆるエラーをdo
文のcatch
節で取り扱います、The Swift Programming Languageのエラー処理そしてインポートされるCocoaエラーパラメータについてで記述されるように。
var checkingTypes : NSTextCheckingTypes
+ dataDetectorWithTypes:error: