init(URL:documentAttributes:)
Initializes a new attributed string object from the data at the specified URL.
Declaration
init?(URL url: URL, documentAttributes dict: AutoreleasingUnsafeMutablePointer<NSDictionary?>?)init?(url: URL, documentAttributes dict: AutoreleasingUnsafeMutablePointer<NSDictionary?>?)Parameters
- url:
An
NSURLobject specifying the document to load. - dict:
An in-out dictionary containing document-level attributes described in
Document Attributes. May beNULL, in which case no document attributes are returned.
Return Value
Returns an initialized object, or nil if the data can’t be decoded.
Discussion
The contents of aURL 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 docAttributes a dictionary containing document-level attributes described in Document Attributes. docAttributes 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.