- readFromData:options:documentAttributes:
data.
レシーバの内容をdata
でのストリームから設定します。
- readFromURL:options:documentAttributes:
url
.
レシーバの内容をurl
でのファイルから設定します。
Deprecated 非推奨
Use read
instead.
read
を代わりに使ってください。
Availability 有効性
Technology
- (BOOL)readFromFileURL:(NSURL
*)url
options:(NSDictionary
*)opts
documentAttributes:(NSDictionary
* _Nullable *)dict
error:(NSError
* _Nullable *)error;
url
The location of the file providing text data. テキストデータを提供しているファイルの位置。
opts
The option keys for importing the document. For a list of possible values, see “Option keys for importing documents” in NSAttributed
.
書類のインポートに対するオプションキー。可能な値の一覧として、“Option keys for importing documents” をNSAttributed
で見てください。
dict
On return, contains the document attributes. For a list of possible values, see “Document Attributes” in NSAttributed
.
戻りでは、書類属性を含みます。可能な値の一覧として、 “Document Attributes” をNSAttributed
で見てください。
error
Upon return, if an error occurs, contains an NSError
object that describes the problem. If you are not interested in possible errors, pass in NULL
.
戻りでは、エラーが発生するならば、問題を記述するNSError
オブジェクトを含みます。あなたが起こりうるエラーに興味がないならば、NULL
を渡してください。
YES
if the attributed string is created successfully or NO
if it was not.
属性付き文字列がうまく作成されるならばYES
またはそうでなかったならばNO
。
For RTF formatted files, the contents of the file are appended to the previous string instead of replacing the previous string. RTF形式ファイルに対して、ファイルの内容は以前の文字列へ追加されます、以前の文字列を置き換える代わりに。
Handling Errors in Swift: Swiftでのエラー処理:
In Swift, this method returns Void
and is marked with the throws
keyword to indicate that it throws an error in cases of failure.
Swiftでは、このメソッドはVoid
を返します、そして失敗の場合にエラーをスローすることを指し示すために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エラーパラメータについてで記述されるように。
- readFromData:options:documentAttributes:
data.
レシーバの内容をdata
でのストリームから設定します。
- readFromURL:options:documentAttributes:
url
.
レシーバの内容をurl
でのファイルから設定します。