我正在开发一个显示 Twitter 用户时间线的应用程序。UITableView
包含具有推文、时间和个人资料图标的单元格。但是,转推仍然有用户的个人资料图像,而不是原始海报的图像。JSON 文件添加了一个名为的新密钥retweeted_status
,该密钥具有一个名为的密钥,该密钥user
具有配置文件图像 URL 内容。我怎样才能做出条件语句来查找是否retweeted_status
存在。如果没有,则获取图像,如下面的代码所示:
static NSString *CellIdentifier = @"Cell";
UITableViewCell *cell = [self.tweetTableView
dequeueReusableCellWithIdentifier:CellIdentifier];
if (cell == nil) {
cell = [[UITableViewCell alloc]
initWithStyle:UITableViewCellStyleSubtitle reuseIdentifier:CellIdentifier];
}
dispatch_queue_t downloadQueue = dispatch_queue_create("image downloader", NULL);
dispatch_async(downloadQueue, ^{
NSDictionary *tweet =_dataSource[[indexPath row]];
NSDictionary *tweetSubtitle = _dataSource[[indexPath row]];
//NSURL *retweetURL = [NSURL URLWithSting: [[tweet objectForKey:@"retweeted_status"] objectForKey:@"user"] objectForKey:@"profile_image_url"];
NSURL *imageURL = [NSURL URLWithString:[[tweet objectForKey:@"user"]objectForKey:@"profile_image_url"]];
NSData *imageData = [NSData dataWithContentsOfURL:imageURL];
//Need conditional function to find if retweet
//NSLog(@"%@",imageData);
dispatch_async(dispatch_get_main_queue(), ^{
cell.textLabel.text = tweet[@"text"];
cell.detailTextLabel.text = tweetSubtitle[@"created_at"];
cell.imageView.image = [UIImage imageNamed:@"placeholder"];
cell.imageView.image = [UIImage imageWithData:imageData];
});
});
//NSLog(@"screen name %@", tweetSubtitle[@"screen_name"]);
return cell;
}