+ errorWithDomain:code:userInfo:
NSError
object for a given domain and code with a given userInfo
dictionary.
あるNSError
オブジェクトを、ある与えられたドメインとコードに対して、ある与えられたuserInfo
辞書で、作成して初期化します。
NSError
object initialized for a given domain and code with a given userInfo
dictionary.
あるNSError
オブジェクトを返します、ある与えられたドメインとコードに対して、ある与えられたuserInfo
辞書で、初期化されます。
Availability 有効性
Technology
- (instancetype)initWithDomain:(NSErrorDomain
)domain
code:(NSInteger
)code
userInfo:(NSDictionary
<NSErrorUserInfoKey
, id
> *)dict;
domain
The error domain—this can be one of the predefined NSError
domains, or an arbitrary string describing a custom domain. domain
must not be nil
. See Error Domains
for a list of predefined domains.
エラードメイン — これはあらかじめ定義されたNSError
ドメインの1つ、またはあつらえのドメインを記述している随意の文字列であることができます。domain
はnil
であってはいけません。Error Domains
をあらかじめ定義されたドメインの一覧として見てください。
code
The error code for the error. このエラーのためのエラーコード。
dict
The user
dictionary for the error. user
may be nil
.
このエラーのためのuser
辞書。user
はnil
であるかもしれません。
An NSError
object initialized for domain
with the specified error code
and the dictionary of arbitrary data user
.
あるNSError
オブジェクトで、domain
に対して、この指定されたエラーcode
と随意データuser
辞書で初期化されます。
This is the designated initializer for NSError
.
これはNSError
に対する指定イニシャライザです。
+ errorWithDomain:code:userInfo:
NSError
object for a given domain and code with a given userInfo
dictionary.
あるNSError
オブジェクトを、ある与えられたドメインとコードに対して、ある与えられたuserInfo
辞書で、作成して初期化します。