有没有办法从Objective-C中的网站读取HTML元标记?喜欢:http://www.seocentro.com/tools/search-engines/metatag-analyzer.html
标签是:
<title> //// </title>
<meta name="keywords" content="Keyword">
<meta name="description" content="Description" />
元标记:
由于
答案 0 :(得分:2)
假设您想要在HTML中读取元标记,您可以使用HTML解析器。
这是一个: https://github.com/zootreeves/Objective-C-HMTL-Parser
作为如何使用它的示例,这里有一个问题,其答案有一个代码片段,上面写着'span'标签: Simple libxml2 HTML parsing example, using Objective-c, Xcode, and HTMLparser.h
答案 1 :(得分:-1)
您可以使用ReadabilityKit:https://github.com/exyte/ReadabilityKit
let parser = Readability(url: articleUrl)
let title = parser.title()
let description = parser.description()
let keywords = parser.keywords()
let imageUrl = parser.imageUrl()