var rootDocument : XMLDocument?
Returns the
XMLDocument
object containing the root element and representing the XML document as a whole.
XMLDocument
オブジェクトを返します、ルート要素を含んでいます、そしてXML書類を全体として表しています。
var parent: XMLNode?
Returns the parent node of the receiver.
レシーバの親ノードを返します。
func child(at: Int) -> XMLNode?
Returns the child node of the receiver at the specified location.
指定された位置での、レシーバの子ノードを返します。
var childCount : Int
Returns the number of child nodes the receiver has.
レシーバが持つ子ノードの数を返します。
var children: [XMLNode]?
Returns an immutable array containing the child nodes of the receiver (as
NSXMLNode
objects).
ある不変の配列を返します、レシーバの子ノードを含んでいます(NSXMLNode
オブジェクトとして)。
var next: XMLNode?
Returns the next
NSXMLNode
object in document order.
書類順で次のNSXMLNode
オブジェクトを返します。
var nextSibling : XMLNode?
Returns the next
NSXMLNode
object that is a sibling node to the receiver.
次のNSXMLNode
オブジェクトを返します、それはレシーバに対する親類ノードです。
var previous: XMLNode?
Returns the previous
NSXMLNode
object in document order.
書類順で前のNSXMLNode
オブジェクトを返します。
func detach()
Detaches the receiver from its parent node.
レシーバをそれの親ノードから分離します。