Instance Method
インスタンスメソッド
objectByApplyingXSLT:arguments:error:
Applies the XSLT pattern rules and templates (specified as a data object) to the receiver and returns a document object containing transformed XML or HTML markup.
XSLTパターン規則とテンプレート(データオブジェクトとして指定される)をレシーバに適用します、そして変換されたXMLまたはHTMLマークアップを含むある書類オブジェクトを返します。
Parameters
パラメータ
xslt
A data object containing the XSLT pattern rules and templates.
XSLTパターン規則とテンプレートを含んでいるあるデータオブジェクト。
arguments
A dictionary containing NSString
key-value pairs that are passed as runtime parameters to the XSLT processor. Pass in nil
if you have no parameters to pass.
NSString
キー値ペアを含んでいるある辞書、それは実行時パラメータとしてXSLTプロセッサに渡されます。nil
を渡してください、もし渡すパラメータをあなたが持たないならば。
error
If an error occurs, indirectly returns an NSError
object encapsulating error or warning messages generated by XSLT processing.
エラーが発生するならば、間接的にNSError
オブジェクトを返します、XSLT処理によって生成されたエラーまたは警告をカプセル化しています。
Return Value
戻り値
Depending on intended output, the method returns an NSXMLDocument
object or an NSData
data containing transformed XML or HTML markup. If the message is supposed to create plain text or RTF, then an NSData
object is returned, otherwise an XML document object.
意図される出力に依存して、メソッドはあるNSXMLDocument
オブジェクトまたはあるNSData
データを返します、変換されたXMLまたはHTMLマークアップを含んでいます。メッセージがプレーンテキストまたはRTFを作成することになっているならば、そのときNSData
オブジェクトが返されます、そうでなければあるXML書類オブジェクト。
The method returns nil
if XSLT processing did not succeed.
See Also
参照
Transforming a Document Using XSLT
ある書類をXSLTを使って変換する
- objectByApplyingXSLTString:arguments:error:
Applies the XSLT pattern rules and templates (specified as a string) to the receiver and returns a document object containing transformed XML or HTML markup.
XSLTパターン規則とテンプレート(文字列として指定される)をレシーバに適用します、そして変換されたXMLまたはHTMLマークアップを含むある書類オブジェクトを返します。
- objectByApplyingXSLTAtURL:arguments:error:
Applies the XSLT pattern rules and templates located at a specified URL to the receiver and returns a document object containing transformed XML markup or an NSData
object containing plain text, RTF text, and so on.
指定されたURLで位置するXSLTパターン規則とテンプレートをレシーバに適用します、そして変換されたXMLマークアップを含むある書類オブジェクトまたはプレーンテキスト、RTFテキスト、などを含むNSData
オブジェクトを返します。