Initializer
init(contentsOf:)
Initializes a parser with the XML content referenced by the given URL.
あるパーサーを初期化します、与えられたURLによって参照されるXML内容を使います。
Declaration
宣言
convenience init?(contentsOf url: URL
)
Parameters
パラメータ
url
An NSURL
object specifying a URL. The URL must be fully qualified and refer to a scheme that is supported by the NSURL
class.
あるURLを指定しているNSURL
オブジェクト。URLは、完全修飾される、そしてNSURL
クラスによってサポートされるあるスキームを参照する、必要があります。
Return Value
戻り値
An initialized NSXMLParser
object or nil
if an error occurs.
初期化されるNSXMLParser
オブジェクトまたはエラーが発生するならばnil
。
See Also
参照
Initializing a Parser Object
パーサーオブジェクトを初期化する
init(data: Data)
Initializes a parser with the XML contents encapsulated in a given data object.
あるパーサーを初期化します、与えられたデータオブジェクトの中にカプセル化されるXML内容を使います。
init(stream: InputStream)
Initializes a parser with the XML contents from the specified stream and parses it..
あるパーサーを初期化します、指定されたストリームからそしてそれを構文解析するXML内容を使います。
Related Documentation
関連文書