我有一个问题,希望很快。我正在使用 SWXMLHash for Swift 解析 eBay 的 API 返回的 XML。一些回报变得非常冗长。
如:
xml["findCompletedItemsResponse"][“searchResults"][“item”]...[“sellerID"].element?.text
我将如何压缩这个说:
xml[rootVar][“item”]...[“sellerID"].element?.text
有没有办法在这个实例化中指定这个?我已经尝试过(显然没有用):
let xml = SWXMLHash.config {
config in
config.shouldProcessLazily = true
config.shouldProcessNamespaces = true
rootElementName = "findCompletedItemsResponse"
}.parse(response);