質問する
1145 次
1 に答える
1
これは簡単な作業で、ほとんど正しくできました。
必要なのは -tag のコンテンツ (または属性) であるa
ため、それが必要であることをパーサーに伝える必要があります。
に変更するだけXPath
です
@"//div[@id='content']/div[@id='main-content']/div/div[@id='detailsouterframe']/div[@id='detailsframe']/div[@id='details']/div[@class='nfo']/pre/a"
(最後に を逃したa
ので必要ありませんnode()
)
出力:
http://www.imdb.com/title/tt1904996/
http://leetleech.org/images/65823608764828593230.png
http://leetleech.org/images/44748070481477652927.png
http://leetleech.org/images/ 42024611449329122742.png
スクリーンショットの URL のみが必要な場合は、次のようにすることができます
NSMutableArray *screenshotURLs = [[NSMutableArray alloc] initWithCapacity:0];
for (int i = 1; i < nodes.count; i++) {
[screenshotURLs addObject:nodes[i]];
}
于 2013-05-04T21:09:28.297 に答える