func addAttribute (XMLNode)
Adds an attribute node to the receiver.
ある属性ノードをレシーバに加えます。
func attribute(forName : String) -> XMLNode?
Returns the attribute node of the receiver with the specified name.
指定された名前を持つ、レシーバの属性ノードを返します。
func attribute(forLocalName : String, uri: String?) -> XMLNode?
Returns the attribute node of the receiver that is identified by a local name and URI.
あるローカル名とURIによって識別されるレシーバの属性ノードを返します。
var attributes: [XMLNode]?
Sets all attributes of the receiver at once, replacing any existing attribute nodes.
レシーバの全ての属性を一度に設定します、あらゆる既存の属性ノードを置き換えます。
func removeAttribute (forName : String)
Removes an attribute node identified by name.
名前によって識別される属性ノードを取り除きます。
func setAttributesWith ([String : String])
Sets the attributes of the receiver based on the key-value pairs specified in the passed dictionary.
レシーバの属性を設定します、渡された辞書において指定されたキー値ペアに基づきます。