有没有办法在 XCode 中将 Kanna ( https://github.com/tid-kijyun/Kanna ) 添加到 Playground?
我曾尝试通过 CocoaPods 手动安装它,但没有成功。我也尝试将它打包到框架中,但仍然没有运气。
将不胜感激任何输入。
这些是我最常遇到的错误消息:
最佳答案
Github 有一个有趣的库,可以在 Playground 中运行 pods。虽然还很年轻,但是已经很不错了。它创建了一个新项目,其中安装了一个或多个 pod,并准备在 Playground 中进行测试。
我用你的图书馆测试过,工作正常:
//: Please build the scheme 'KannaPlayground' first
import XCPlayground
XCPlaygroundPage.currentPage.needsIndefiniteExecution = true
import Kanna
let html = "<html><a>Hello World</a></html>"
if let doc = Kanna.HTML(html: html, encoding: NSUTF8StringEncoding) {
print(doc.title)
// Search for nodes by CSS
for link in doc.css("a, link") {
print(link.text)
print(link["href"])
}
// Search for nodes by XPath
for link in doc.xpath("//a | //link") {
print(link.text)
print(link["href"])
}
}
我希望这对你有帮助。
关于ios - 在操场上导入 Kanna,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/35735193/