Type Method 型メソッド

elementWithName:stringValue:

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

Declaration 宣言

+ (id)elementWithName:(NSString *)name 
          stringValue:(NSString *)string;

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 NSXMLTextKind—containing the text specified in string. Returns nil if the object couldn't be created. あるNSXMLElementオブジェクト、単一のテキストノード子を持ちます — 種類NSXMLTextKindNSXMLNodeオブジェクト — stringにおいて指定されたテキストを含んでいます。nilを返します、もしオブジェクトが作成できなかったならば。

Discussion 議論

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

See Also 参照

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