我正在使用带有Swift 4的pod
pod 'SWXMLHash', '~> 4.0.0'
pod 'Alamofire', '~> 4.5'
当我用下面的代码解析XML时,得到错误:
Type 'XMLIndexer' does not conform to protocol 'Sequence'
代码:
Alamofire.request("https://itunes.apple.com/us/rss/topgrossingapplications/limit=10/xml").response { response in
debugPrint(response)
guard let data = response.data else {
return
}
let xml = SWXMLHash.parse(data)
let nodes = xml["feed"]["entry"]
for node in nodes {
print(node["title"].text)
}
}
我正在尝试从上面的iTunes XML URL访问“entry”标记列表。 如果有任何方法可以访问和初始化类/结构中的条目列表,请帮助。
答案 0 :(得分:3)
根据文档,您需要添加all
:
Alamofire.request("https://itunes.apple.com/us/rss/topgrossingapplications/limit=10/xml").response { response in
debugPrint(response)
guard let data = response.data else {
return
}
let xml = SWXMLHash.parse(data)
let nodes = xml["feed"]["entry"]
for node in nodes.all {
print(node["title"]?.text)
}
}
答案 1 :(得分:1)
另一种解决方案是使用基于Fuzi框架的Ono,它具有很强的支持。
以下代码段将打印标题:
Alamofire.request("https://itunes.apple.com/us/rss/topgrossingapplications/limit=10/xml").responseString { response in
guard let xml = try? XMLDocument(string: response.value ?? "") else {
return
}
guard let feed = xml.root else {
return
}
for entry in feed.children(tag: "entry") {
let title = entry.firstChild(tag: "title")?.stringValue ?? ""
print(title)
}
}