func object(byApplyingXSLT : Data, arguments: [String : String]?) -> Any
func object(byApplyingXSLTString : String, arguments: [String : String]?) -> Any
NSData
object containing plain text, RTF text, and so on.
指定されたURLで位置するXSLTパターン規則とテンプレートをレシーバに適用します、そして変換されたXMLマークアップを含むある書類オブジェクトまたはプレーンテキスト、RTFテキスト、などを含むNSData
オブジェクトを返します。
Availability 有効性
Technology
xsltURL
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
を渡してください、もし渡すパラメータをあなたが持たないならば。
Note 注意
Several XML websites discuss XSLT parameters, including O'Reilly Media’s http://www.xml.com. いくつかのXMLウェブサイトはXSLTパラメータについて議論します、O'Reilly Mediaのhttp://www.xml.comを含めて。
error
Depending on intended output, the 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.
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エラーパラメータについてで記述されるように。
func object(byApplyingXSLT : Data, arguments: [String : String]?) -> Any
func object(byApplyingXSLTString : String, arguments: [String : String]?) -> Any