Type Method 型メソッド

attribute(withName:uri:stringValue:)

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

Declaration 宣言

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

Parameters パラメータ

name

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

URI

A URI (Universal Resource Identifier) that qualifies name. あるURI(Universal Resource Identifier)それはnameを修飾します。

value

A string that is the value of the 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 “bst:id=`12345’”, “bst” is the name qualifier (derived from the URI), “id” is the attribute name, and “12345” is the attribute value. 例えば、属性 “bst:id=`12345’” において、“bst” は修飾子の名前です(URIから導き出されます)、“id” は属性名です、そして “12345” は属性値です。

See Also 参照

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