Contents

setStringValue(_:resolvingEntities:)

Sets the content of the receiver as a string value and, optionally, resolves character references, predefined entities, and user-defined entities as declared in the associated DTD.

Declaration

func setStringValue(_ string: String, resolvingEntities resolve: Bool)

Parameters

  • string:

    A string to assign as the value of the receiver.

  • resolve:

    True to resolve character references, predefined entities, and user-defined entities as declared in the associated DTD; False otherwise. Namespace and processing-instruction nodes have their entities resolved even if resolve is False.

Discussion

User-defined entities not declared in the DTD remain in their unresolved form. This method can only be invoked on NSXMLNode objects that may have content, specifically elements, attributes, namespaces, processing instructions, text, and DTD-declaration nodes. Setting the string value of a node object removes all existing children, including processing instructions and comments. Setting the string value of an element -node object creates a text node as the sole child.

See Also

Managing XML Node Objects