Initializer

init(name:uri:)

Returns an NSXMLElement object initialized with the specified name and URI. あるNSXMLElementオブジェクトを返します、指定された名前とURIで初期化されます。

Declaration 宣言

init(name: String, 
 uri URI: String?)

Parameters パラメータ

name

A string that specifies the qualified name of the element. 要素の修飾名を指定する文字列。

URI

A string that specifies the namespace URI associated with the element. 要素と結びつけられた名前空間URIを指定する文字列。

Return Value 戻り値

The initialized NSXMLElement object or nil if initialization did not succeed. 初期化されたNSXMLElementオブジェクト、またはnil、もし初期化がうまくいかなかったならば。

Discussion 議論

You can look up the namespace prefix for this element node based on its URI using resolvePrefix(forNamespaceURI:). This method is the primary initializer for the NSXMLElement class. あなたは、この要素に対する名前空間接頭辞を、それのURIに基づき、resolvePrefix(forNamespaceURI:)を使って検索できます。このメソッドは、NSXMLElementクラスに対する主要イニシャライザです。

See Also 参照

Initializing NSXMLElement Objects NSXMLElementオブジェクトを初期化する