Instance Property インスタンスプロパティ

next

Returns the next NSXMLNode object in document order. 書類順で次のNSXMLNodeオブジェクトを返します。

Declaration 宣言

@NSCopying var next: XMLNode? { get }

Discussion 議論

You use this method to “walk” forward through the tree structure representing an XML document or document section. (Use previous to traverse the tree in the opposite direction.) Document order is the natural order that XML constructs appear in markup text. If you send this message to the last node in the tree, nil is returned. NSXMLNode bypasses namespace and attribute nodes when it traverses a tree in document order. あなたは、このメソッドを使って、XML書類または書類セクションを表しているツリー構造体を前方に端から端まで “歩きます”。(previousを使ってツリーを逆方向で辿ってください。)書類方向は、XML構造がマークアップテキストにおいて現れる自然な方向です。あなたがこのメッセージをツリーの中の最後のノードに送るならば、nilが返されます。NSXMLNodeは、名前空間と属性ノードを迂回します、それがツリーを書類方向でたどる場合は。

See Also 参照

Navigating the Tree of Nodes ノードのツリーを閲覧する