Type Method 型メソッド

element(withName:stringValue:)

Returns an XMLElement object with a single text-node child containing the specified text. XMLElementオブジェクトを返します、指定されたテキストを含んでいる単一のテキストノード子を持ちます。

Declaration 宣言

class func element(withName name: String, 
       stringValue string: String) -> Any

Parameters パラメータ

name

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

string

A string that is the content of the receiver's text node. ある文字列、それはレシーバの持つテキストノードの内容です。

Return Value 戻り値

An NSXMLElement object with a single text-node child—an NSXMLNode object of kind XMLNode.Kind.text—containing the text specified in string. Returns nil if the object couldn't be created. あるNSXMLElementオブジェクト、単一のテキストノード子を持ちます — 種類XMLNode.Kind.textNSXMLNodeオブジェクト — stringにおいて指定されたテキストを含んでいます。nilを返します、もしオブジェクトが作成できなかったならば。

Discussion 議論

The equivalent XML markup is <name>string</name>. 同等のXMLマークアップは、<name>string</name>です。

See Also 参照

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