我在UITableview中显示电影闲话,然后选择它显示Detailviewcontroller的单元格。成功获取UITableview中的数据,在DetailviewController UIImageview和UITextview中,获取成功描述但未显示图像。这是我的代码,请检查一次
这是网址NSURL *url = [NSURL URLWithString:@"http://www.cinejosh.com/rss-feed/3/andhra-latest-gossips-news.html"];
这是我的代码。我的代码中有任何问题。请检查一次
- (void)loadingImageUrl
{
NSData *gossipsHtmlData = [NSData dataWithContentsOfURL:gossipsUrl];
TFHpple *gossipsParser = [TFHpple hppleWithHTMLData:gossipsHtmlData];
NSString *gossipsXpathQueryString = @"//td//img";
imageGossipsNodes = [gossipsParser searchWithXPathQuery:gossipsXpathQueryString];
for (TFHppleElement *element in imageGossipsNodes) {
NSString *imageUrlString = [NSString stringWithFormat:@"http://www.cinejosh.com%@", [element objectForKey:@"src"]];
NSData *imageData = [NSData dataWithContentsOfURL:[NSURL URLWithString:imageUrlString]];
imageview.image = [UIImage imageWithData:imageData];
}
}
它没有调用循环。