Type Method 型メソッド

element(withName:children:attributes:)

Returns an XMLElement object with the given tag (name), attributes, and children. XMLElementオブジェクトを返します、与えられたタグ(名前)、属性、そして子を持ちます。

Declaration 宣言

class func element(withName name: String, 
          children: [XMLNode]?, 
        attributes: [XMLNode]?) -> Any

Parameters パラメータ

name

A string that is the name (tag identifier) of the element. ある文字列、それは要素の名前(タグ識別子)です。

children

An array of NSXMLElement objects or NSXMLNode objects of kinds XMLNode.Kind.element, XMLNode.Kind.processingInstruction, XMLNode.Kind.comment, and XMLNode.Kind.text. Specify nil if there are no children to add to this node object. 種類XMLNode.Kind.elementXMLNode.Kind.processingInstructionXMLNode.Kind.comment、そしてXMLNode.Kind.textNSXMLElementオブジェクトそれらまたはNSXMLNodeオブジェクトそれらからなるある配列。nilを指定してください、もしこのノードオブジェクトに加える子がないならば。

attributes

An array of NSXMLNode objects of kind XMLNode.Kind.attribute. Specify nil if there are no attributes to add to this node object. 種類XMLNode.Kind.attributeNSXMLNodeオブジェクトそれらからなるある配列。nilを指定してください、このノードオブジェクトに加える属性がないならば。

Return Value 戻り値

An NSXMLElement object or nil if the object couldn't be created. あるNSXMLElementオブジェクト、またはnil、もしオブジェクトが作成できなかったならば。

See Also 参照

Creating and Initializing Node Objects ノードオブジェクトの作成と初期化