- initWithContentsOfURL:options:error:
- initWithRootElement:
NSXMLDocument
object initialized with a single child, the root element.
あるNSXMLDocument
オブジェクトを返します、単一の子、ルート要素で初期化されます。
+ replacementClassForClass:
NSXMLDocument
object created from a string containing XML markup text.
あるNSXMLDocument
オブジェクトを初期化して返します、XMLマークアップテキストを含んでいる文字列から作成されます。
Availability 有効性
Technology
- (instancetype)initWithXMLString:(NSString
*)string
options:(NSXMLNodeOptions
)mask
error:(NSError
* _Nullable *)error;
string
A string object containing XML markup text. XMLマークアップテキストを含んでいる文字列オブジェクト。
mask
error
An error object that, on return, identifies any parsing errors and warnings or connection problems. あるエラーオブジェクト、それは、戻りでは、あらゆる構文解析エラーおよび警告または接続問題を識別します。
An initialized NSXMLDocument
object, or nil
if initialization fails because of parsing errors or other reasons.
初期化されたNSXMLDocument
オブジェクト、またはnil
、もし初期化が構文解析エラーまたは他の理由のために失敗するならば。
The encoding of the document is set to UTF-8. 書類の符号化はUTF-8に設定されます。
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エラーパラメータについてで記述されるように。
- initWithContentsOfURL:options:error:
- initWithRootElement:
NSXMLDocument
object initialized with a single child, the root element.
あるNSXMLDocument
オブジェクトを返します、単一の子、ルート要素で初期化されます。
+ replacementClassForClass: