解析转推配置文件图像

时间:2013-04-20 20:26:15

标签: ios objective-c json parsing uitableview

我正在开发一个显示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;
  }

1 个答案:

答案 0 :(得分:1)

如果我理解你 -

if ([tweet objectForKey:@"retweeted_status"])
{
// the tweet has a retweeted status
}
else
{
// no retweeted status
}
我是对的吗?这就是你想要的?