使用Swift创建文本XML字符串可以通过以下步骤实现:
完整的代码示例:
import Foundation
let xmlDoc = XMLDocument(rootElement: XMLElement(name: "root"))
let element = XMLElement(name: "person")
element.addAttribute(XMLNode.attribute(withName: "id", stringValue: "1") as! XMLNode)
element.addChild(XMLNode.element(withName: "name", stringValue: "John") as! XMLNode)
element.addChild(XMLNode.element(withName: "age", stringValue: "30") as! XMLNode)
xmlDoc.rootElement()?.addChild(element)
let xmlString = xmlDoc.xmlString(options: .nodePrettyPrint)
print(xmlString)
这样就可以使用Swift创建文本XML字符串了。
领取专属 10元无门槛券
手把手带您无忧上云