我正在使用 Twitter API 创建一个应用程序并使用 JSON 进行解析,每次我将图像加载到单元格中时,它都会拍摄多张图像并且一切运行缓慢。我将如何继续获取图像然后将相同的图像放入所有单元格。
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
static NSString *CellIdentifier = @"TweetCell";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
if (cell == nil) {
cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier];
}
NSDictionary *tweet = [tweets objectAtIndex:indexPath.row];
NSString *text = [tweet objectForKey:@"text"];
NSString *time = [tweet objectForKey:@"created_at"];
time = [time stringByReplacingOccurrencesOfString:@" +0000 "withString:@"/"];
NSString *twitterImage = [[tweet objectForKey:@"user"] objectForKey:@"profile_image_url_https"];
NSString *completeImage = [NSString stringWithFormat:@"%@", twitterImage];
NSData * imageData = [[NSData alloc] initWithContentsOfURL: [NSURL URLWithString: completeImage]];
imageLabel.image = [UIImage imageWithData: imageData];
cell.imageView.image = [UIImage imageWithData: imageData];
cell.textLabel.text = text;
cell.textLabel.numberOfLines = 3;
cell.detailTextLabel.text = [NSString stringWithFormat:@"%@", time];
}
return cell;
}
现在看起来像这样,但当我滚动时真的很迟钝。 http://gyazo.com/8ab8325f3921fdb7e4f0ea0107d389ac.png