Objective c xpath查询不起作用

时间:2014-01-02 01:46:57

标签: ios xpath

我正试图从

中获取内容
<p>
    <strong>Some headline</strong>
    Some text here ...
</p>

我想将"some text here ..."存储在NSString中。 我的XPath查询看起来像这样

@"//div[@class='articleInfo']/div[@class='readMore description']/div[@class='readMoreContent']/p"

但是返回null

请帮忙!

1 个答案:

答案 0 :(得分:0)

如果您有这样的事情:

<div class="articleInfo">
<div class="readMore description">
<div class="readMoreContent"> 
<p> 
    <strong>Some headline</strong> 
    Some text here ... 
</p> 
</div>
</div>
</div>

然后你的xpath应该工作:

//div[@class='articleInfo']/div[@class='readMore description']/div[@class='readMoreContent']/p/text()

另外正如@San所说,可能是拼写错误。我看到你在这里有空间“readMore description”,但这里没有“readMoreContent”