Type Method 型メソッド

namespace(withName:stringValue:)

Returns an NSXMLNode object representing a namespace with a specified name and URI. NSXMLNodeオブジェクトを返します、指定された名前とURIを持つ名前空間を表しています。

Declaration 宣言

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

Parameters パラメータ

name

A string that is the name of the namespace. Specify an empty string for name to get the default namespace. ある文字列、それは名前空間の名前です。空の文字列をnameに対して指定して、省略時の名前空間を取得してください。

value

A string that identifies the URI associated with the namespace. ある文字列、それは名前空間と結びつけられたURIを識別します。

Return Value 戻り値

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

Discussion 議論

The equivalent namespace declaration in XML markup is xmlns:name="value". XMLマークアップにおける同等の名前空間宣言は、xmlns:name="value"です。

Special Considerations 特別な注意事項

Applications linked on macOS 10.6 or later will throw an exception if the name parameter is nil. macOS 10.6以降でリンクされるアプリケーションは、nameパラメータがnilならば例外をスローするでしょう。

See Also 参照

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