Type Method 型メソッド

attribute(withName:stringValue:)

Returns an NSXMLNode object representing an attribute node with a given name and string. NSXMLNodeオブジェクトを返します、与えられた名前と文字列を持つ属性ノードを表しています。

Declaration 宣言

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

Parameters パラメータ

name

A string that is the name of an attribute. ある文字列、それは属性の名前です。

value

A string that is the value of an attribute. ある文字列、それは属性の値です。

Return Value 戻り値

An NSXMLNode object of kind XMLNode.Kind.attribute or nil if the object couldn't be created. 種類XMLNode.Kind.attributeNSXMLNodeオブジェクト、またはnil、もしオブジェクトが作成できなかったならば。

Discussion 議論

For example, in the attribute “id=`12345’”, “id” is the attribute name and “12345” is the attribute value. 例えば、属性 “id=`12345’” において、“id” は属性名です、そして “12345” は属性値です。

See Also 参照

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