Instance Method
インスタンスメソッド
initWithData:
Initializes a parser with the XML contents encapsulated in a given data object.
あるパーサーを初期化します、与えられたデータオブジェクトの中にカプセル化されるXML内容を使います。
Declaration
宣言
- (instancetype)initWithData:(NSData
*)data;
Parameters
パラメータ
data
An NSData
object containing XML markup.
XMLマークアップを含んでいるNSData
オブジェクト。
Return Value
戻り値
An initialized NSXMLParser
object or nil
if an error occurs.
初期化されるNSXMLParser
オブジェクトまたはエラーが発生するならばnil
。
Discussion
議論
This method is the designated initializer.
このメソッドは、指定イニシャライザです。
See Also
参照
Initializing a Parser Object
パーサーオブジェクトを初期化する
- initWithContentsOfURL:
Initializes a parser with the XML content referenced by the given URL.
あるパーサーを初期化します、与えられたURLによって参照されるXML内容を使います。
- initWithStream:
Initializes a parser with the XML contents from the specified stream and parses it..
あるパーサーを初期化します、指定されたストリームからそしてそれを構文解析するXML内容を使います。