Type Method 型メソッド

attributeWithName:stringValue:

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

Declaration 宣言

+ (id)attributeWithName:(NSString *)name 
            stringValue:(NSString *)stringValue;

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 NSXMLAttributeKind or nil if the object couldn't be created. 種類NSXMLAttributeKindNSXMLNodeオブジェクト、または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 ノードオブジェクトの作成と初期化