- fileWrapperFromRange:documentAttributes:error:
- docFormatFromRange:documentAttributes:
- RTFFromRange:documentAttributes:
- RTFDFromRange:documentAttributes:
- RTFDFileWrapperFromRange:documentAttributes:
Availability 有効性
Technologies
- (NSData
*)dataFromRange:(NSRange
)range
documentAttributes:(NSDictionary
<NSAttributedStringDocumentAttributeKey
, id
> *)dict
error:(NSError
* _Nullable *)error;
range
The range. その範囲。
dict
A required dictionary specifying the document attributes. The dictionary contains values from Document Types
and must at least contain NSDocument
.
書類属性を指定している必須辞書。辞書はDocument Types
からの値を含んでいます、そして少なくともNSDocument
を含んでいなければなりません。
error
An in-out variable containing an encountered error, if any. もしあれば、出くわしたエラーを含んでいるインアウト変数。
Returns the data for the attributed string, or nil
if failure. When nil
, error
encapsulates the error information.
属性付き文字列に対するデータを返します、またはもし失敗ならばnil
を。nil
の場合、error
はエラー情報にカプセル化されます。
Raises an NSRange
if any part of range
lies beyond the end of the receiver’s characters.
NSRange
を引き起こします、もしrange
の何らかの部分がレシーバの持つ文字の終わりを越えているならば。
Handling Errors in Swift: Swiftでのエラー処理:
In Swift, this method returns a nonoptional result and is marked with the throws
keyword to indicate that it throws an error in cases of failure.
Swiftでは、このメソッドは非オプショナルの結果を返します、そして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エラーパラメータについてで記述されるように。
- fileWrapperFromRange:documentAttributes:error:
- docFormatFromRange:documentAttributes:
- RTFFromRange:documentAttributes:
- RTFDFromRange:documentAttributes:
- RTFDFileWrapperFromRange:documentAttributes: