- initWithPath:documentAttributes:
- initWithFileURL:options:documentAttributes:error:
Deprecated 非推奨
Use init
instead.
init
を代わりに使ってください。
Availability 有効性
Technology
- (instancetype)initWithURL:(NSURL
*)url
documentAttributes:(NSDictionary
* _Nullable *)dict;
aURL
An NSURL
object specifying the document to load.
ロードする書類を指定しているNSURL
オブジェクト。
docAttributes
An in-out dictionary containing document-level attributes described in Document Attributes
. May be NULL
, in which case no document attributes are returned.
Document Attributes
において記述される書類レベルの属性を含んでいるインアウト辞書。NULL
かもしれません、その場合には書類属性は返されません。
Returns an initialized object, or nil
if the data can’t be decoded.
初期化されたオブジェクトを、またはnil
をデータがデコードできないならば返します。
The contents of a
are examined to best load the file in whatever format it’s in. Filter services can be used to convert the file into a format recognized by Cocoa. Also returns by reference in doc
a dictionary containing document-level attributes described in Document Attributes
. doc
may be NULL
, in which case no document attributes are returned. Returns an initialized object, or nil
if the file at path
can’t be decoded.
a
の内容は、それがどんな形式であってもファイルを最も良くロードするために調査されます。フィルタサービスは、ファイルをCocoaによって認識される形式へと変換するために使われることができます。またdoc
において、Document Attributes
で記述される書類レベルの属性を含んでいる辞書を参照によって返します。doc
はNULL
かもしれません、その場合には書類属性は返されません。初期化されたオブジェクトを、またはnil
をpath
でのファイルがデコードできないならば返します。
- initWithPath:documentAttributes:
- initWithFileURL:options:documentAttributes:error: