0

我正在使用 tfhpple 解析一个 html 页面,然后接收一个标题和一个 URL。然后我使用这些数据在 tableview 中显示标题,当我单击一行时,detailview 将打开带有所选行 URL 的 uiwebview。我的问题是如何将收到的 URL 转换为 detailsview webview?我在想我必须将数据存储在 Nsdata 中,并以某种方式使用它来显示 URL。 是我到目前为止得到的:

已编辑

这是我从网站 www.fr12.nl 获取数据的地方

 -(void)loadFr12Feed {
  // 1

NSURL *Fr12WebsiteLink = [NSURL URLWithString:@"http://www.fr12.nl/"];
NSData *Fr12WebsiteHtmlData = [NSData dataWithContentsOfURL:Fr12WebsiteLink];

//
TFHpple *Fr12WebsiteParser = [TFHpple hppleWithHTMLData:Fr12WebsiteHtmlData];

// 3
//NSString *Fr12WebsiteXpathQueryString = @"//div[@class='content_left_extra']/ul/li/a";
NSString *Fr12WebsiteXpathQueryString = @"//div[@class ='content_left_extra']/ul/li/a";
NSArray *Fr12WebsiteNodes = [Fr12WebsiteParser   searchWithXPathQuery:Fr12WebsiteXpathQueryString];

// 4
  NSMutableArray *newFr12Website = [[NSMutableArray alloc] initWithCapacity:0];
 for (TFHppleElement *element in Fr12WebsiteNodes) {
    // 5
    Fr12Opslag *fr12opslag = [[Fr12Opslag alloc] init];
    [newFr12Website addObject:fr12opslag];

    // 6
    fr12opslag.title = [element objectForKey:@"title"];


    // 7
   // bowtiefulimages.url = [element objectForKey:@"src"];



}

// 8
Fr12Content = newFr12Website;
[self.tableView reloadData];
}

这是我正在解析的 html:<a title="LIVE JANMAAT KAN NIET SPELEN (67 reacties)" href="nieuws/23239-live-janmaat-kan-niet-spelen.html">

我在表格视图中获得标题,但我希望详细视图显示来自“href”的文章,但我不知道该怎么做。

4

0 回答 0