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

previous

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

Declaration 宣言

@NSCopying var previous: XMLNode? { get }

Discussion 議論

You use this method to “walk” backward through the tree structure representing an XML document or document section. (Use next 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 first node in the tree (that is, the root element), nil is returned. NSXMLNode bypasses namespace and attribute nodes when it traverses a tree in document order. あなたは、このメソッドを使って、XML書類または書類セクションを表しているツリー構造体を後方に端から端まで “歩きます”。(nextを使ってツリーを逆方向で辿ってください。)書類方向は、XML構造がマークアップテキストにおいて現れる自然な方向です。あなたがこのメッセージをツリーの中の最初のノードに送るならば(すなわち、ルート要素)、nilが返されます。NSXMLNodeは、名前空間と属性ノードを迂回します、それがツリーを書類方向でたどる場合は。

See Also 参照

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